Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Center area post/pages (http://forum.bytesforall.com/forumdisplay.php?f=32)
-   -   [SOLVED] Adsense between posts on category pages (http://forum.bytesforall.com/showthread.php?t=14137)

mkellam May 12, 2011 03:28 PM

[SOLVED] Adsense between posts on category pages
 
Hi,
I'm trying to insert Adsense ads after every 3rd item on my category pages.

I'm using this code, which puts the ad after the 3rd item, but I'd also like to put an ad after the 6th item (or every third item). How would I do that? I tried 3,6 but caused a scary looking parsing error! ;)


Code:

<?php if ( is_category() AND $bfa_ata['postcount'] == 3 ) { ?>

Adsense Code Here

<?php } ?>

Also, I put it as the last thing in the loop. Is this the best location if I want it between items on the category page?

Here is a sample URL:
http://www.livingonadime.com/categor...ocery-savings/

Thanks!
Michael

juggledad May 12, 2011 04:37 PM

Try this
HTML Code:

<?php if ( is_category() AND (($bfa_ata['postcount'] == 3 ) OR ($bfa_ata['postcount'] == 6 )) ) { ?>

mkellam May 12, 2011 08:24 PM

Thanks, I'll try that!
Michael

mkellam Jun 9, 2011 01:21 PM

Just letting you know -- That worked great! Thanks, Juggledad!


All times are GMT -6. The time now is 11:12 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.