'gallery',
);
$the_query = new WP_Query( $args );
$iCol = 2;
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
$iCol++;
$gal_box_start = $gal_box_end = '';
if( ($iCol%3) == 0 ){
echo '
';
}
endwhile;
endif;wp_reset_postdata();
?>