File: /var/www/html/nsci/wp-content/themes/soledad/content-classic-grid-2.php
<?php
/**
* Template loop for 1st standard then grid 2
*/
/**
* Create var $jj to count order posts
* If $jj = 1, to show standard post, $jj > 1 to show grid post
*
* @since 1.0
*/
if ( ! isset ( $jj ) ) { $jj = 1; } else { $jj = $jj; }
if ( $jj == 1 ) {
//get_template_part( 'content', 'classic' );
include( locate_template( 'content-classic.php' ) );
}
else {
include( locate_template( 'content-grid-2.php' ) );
}
$jj++;
?>