When I say 'Every 3rd Iteration' I mean 'Every 3rd Iteration... starting from number 4'
If it were just every 3rd, I would target the appropriate iterations like so:
<?php if ($count % 3 == 0) : ?>
Bear in mind I've set $count to 1 beforehand
But the iterations need to start with the 4th, then 7th, 10th etc.
Does anyone know how I can acheive this? Can I do it with a simple if statement like the one above?
Unfortunately I don't think a for loop will be possible as this is a WordPress loop I'm dealing with
<?php $offset=1; if (( $count - $offset) % 3 == 0) : ?><?php if ($count % 3 == 0 && $count != 3) : ?>