Only Show Ads on Old Posts
-
Hey, this is kicking my ass. I’m trying to make it only show an ad if the post is older than 30 days old. In an ideal world it would ALSO only show the ad if the user is NOT logged in… But I’d settle for just the 30 days bit. Right now it’s always showing the ad.
Here’s the code I’ve got.
<?php
if(time() >= strtotime("-30 days")) {
echo("<Span name=KonaBody>");
the_content(__('(<p class="serif">Read the rest of this entry »</p>)'));
echo("</span>");
} else {
the_content(__('(<p class="serif">Read the rest of this entry »</p>)'));
}
?>I feel like an idiot. Really. ??
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Only Show Ads on Old Posts’ is closed to new replies.