Hey, I posted this over at the regular wp support forum because I am messing about with a theme (no response yet), but since I will be using this on a mu site maybe I can get a little help over here. (and we are so much smarter over here ;)
How can I do this. I am looking through the forum(s) and the codex, and I cannot come up with a solution.
I have found this
http://www.tamba2.org.uk/wordpress/adsense/
and it does some of what I am looking for. Is there a function built in to WP or a implementation of the above link that will do something every certain number of posts?
For example:
post 1
post 2
post 3
DO SOMETHING
post 4
post 5
post 6
DO SOMETHING
post 7
post 8
post 9
DO SOMETHING
...and so on and so on no matter how many posts are on the page.
I am thinking of modifying the previously mentioned script, I figure it would be with this portion
<?php
$postnum = 1;
$showadsense1 = 1;
?>
that would indicate that the something would be after post num 1, I can get it to place after post three, but not to happen after every third post.