What Plugin Can Do This?

ohaider

Senior Member
Joined
Jul 28, 2011
Messages
819
Reaction score
428
Hey everyone I recently had to revamp a site and I forget what plugin I uninstalled, but it could insert Adsense into your posts that were let's say a week old, but all new posts were Adsense-less.

Any help would be appreciated.

Thanks BHW,
Ohaider
 
It's not the plugin you were looking for, I know... But well, you could add in single.php

<?php
if (strcmp( date("Y-m-d", strtotime("-4 day")), get_the_time("Y-m-d") ) > 0) {
?>
INSERT YOUR AD CODE HERE

<?php
}
?>

HTH :)
 
It's not the plugin you were looking for, I know... But well, you could add in single.php



HTH :)

How would I manipulate this to have an image/text link mid content and one at the end?

Edit: found the plugin, figures I saw it before on the WF.
 
Last edited:
Back
Top