Доброго времени суток, как я могу вывести используя стандартные циклы WordPress для вывода нескольких записей в одной итерации цикла
Сейчас мой код выглядит примерно так:
<?php
global $post;
$pc = new WP_Query('cat=11&orderby=date'); ?>
<?php while ($pc->have_posts()) : $pc->the_post(); ?>
<div>
<div class="grid">
<div class="main">
<?php the_post_thumbnail(array()); ?>
<div class="description">
<span class="date">
<?php the_time('j F'); ?>, <?php the_time(); ?>
</span>
<div class="title">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</div>
<i class="fas fa-share-alt"></i>
</div>
</div>
<div class="low">
<div class="content">
<?php the_post_thumbnail(array()); ?>
<span class="date"><?php the_time('j F'); ?>, <?php the_time(); ?></span>
<div class="title">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</div>
</div>
<div class="content">
<?php the_post_thumbnail(array()); ?>
<span class="date"><?php the_time('j F'); ?>, <?php the_time(); ?></span>
<div class="title">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</div>
</div>
<a href="#" class="link-more">Ko'proq</a>
</div>
</div>
</div>
<?php endwhile; ?>
как можно его доработать, сейчас мне вывод просто 3 одни и те же записи.
Заранее спасибо!