HEX
Server: LiteSpeed
System: Linux dal1.hostclusters.com 5.14.0-687.26.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jul 14 16:32:02 EDT 2026 x86_64
User: vslw (1496)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/vslw/www/wp-content/themes/soledad/content-classic-list.php
<?php
/**
 * Template loop for 1st standard then grid
 */


/**
 * 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-list.php' ) );
}

$jj++;
?>