I wanted to echo an image every after 3 post via XML here is my code :
You can also do it without modulus. Just reset your counter when it matches.
if($counter == 2) { // matches every 3 iterations echo 'image-file'; $counter = 0; }