Hey guys.. Setting up a phpBay page, and was curious if it's possible to insert adsense after every 5 auctions?
Thanks
Thanks
This is a nice little page explaining adding adsense to WP - tweak the examples a bit, should be able to do what you want to.
Adsense & Wordpress
try different keywords for each of your sets of five auctions?
I have it setup like that without any modifications to the script or anything. I'm using this template: Monetizing the web and the MW WordPress theme - Monetizing the Web - Javier García
if($count % 5 == 0)
{
$adsense = file_get_contents(ABSPATH . "wp-content/plugins/phpBay/adsensecode.html");
$this->html .= $adsense;
}
So you're saying you call lets say... 100 auctions, and it'll throw adsense after every 5 auctions?