$query_args = array(
'posts_per_page' => 6,
'paged' => get_query_var('paged') ?: 1
);
$query = new WP_Query($query_args);
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
?>
<div class="cart">
<?php if (has_post_thumbnail()) {
the_post_thumbnail('thumbnail');
}?>
<p class="cart__title"><a style="text-decoration: none; color: #171717;" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
<p class="cart__publish-date"><?php echo get_the_date('jFY'); ?></p>
</div>
<?php
выглдяить все правильно
Ии так же думает
Обсуждают сегодня