Skip to content

Instantly share code, notes, and snippets.

View ashleycam3ron's full-sized avatar

Ashley N Cameron ashleycam3ron

View GitHub Profile
@ashleycam3ron
ashleycam3ron / check-nth-post.php
Created January 13, 2018 17:01 — forked from bryceadams/check-nth-post.php
check every nth post wordpress
<?php
// $the_query would just be a standard WP_Query
if ( $the_query->have_posts() ) :
$counter = 1;
while ( $the_query->have_posts() ) : $the_query->the_post();
if ( $counter % columns == 1 ) {
// do something at the start of your 'row'