<?php
/**
* Template loop for 1st standard then grid 2
*/
/**
* Create var $j to count order posts
* If $j = 1, to show standard post, $j > 1 to show grid post
*
* @since 1.0
*/
if ( ! isset ( $j ) ) { $j = 1; } else { $j = $j; }
if ( $j == 1 ) {
get_template_part( 'content', 'standard' );
}
else {
get_template_part( 'content', 'grid-2' );
}
$j ++;
?>