Здравствуйте, есть такой код, который выводит посты:
<?php if ( have_posts() ) : ?>
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
/* Include the post format-specific template for the content. If you want to
* this in a child theme then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'single-templates/content/content', get_post_format() );
endwhile;
cms_paging_nav();
?>
За одну итерацию он получает один пост и до конца, пока не получит не выведет последний.
Мой вопрос - как получить по два поста за каждый "проход" ?
Если вопрос глупый, то заранее извините!
Спасибо