ÜGYFELEK ÉS MUNKÁK
Fontos ügyfelek és munkák 2004 - 2020 között
$clients = new WP_Query( array(
'no_found_rows' => true,
'post_status' => 'publish',
'posts_per_page' => '-1',
'category_name' => 'ugyfelek',
'orderby' => 'title',
'order' => 'ASC',
));if ($clients->have_posts())
{
$i=0;
while ( $clients->have_posts() ) : $clients->the_post();
if($i%4==0){ ?>
}
?>
$i++;
endwhile;
}
?>