Я в пхп вообще не умею и пытаюсь сейчас разобраться с выводом постов, которые в массиве. И я понимаю, что навигация у меня стоит уже после того, как обнуляется массив, но я не понимаю, как засунуть навигацию в сам код... проблема у меня с синтаксисом пхп.
<?php
$args = array(
'orderby' => 'date',
);
$query = new WP_Query( $args );
if( $query->have_posts() ){
while( $query->have_posts() ){
$query->the_post(); ?>
<div class="col-md-6">
<div class="row">
<div class="news_item">
<div class="meta_image">
<a href="<?php the_permalink() ?>">
<?php the_post_thumbnail(); ?>
</a>
</div>
<div class="meta_header">
<span class="meta_category">
<a href="#"><?php the_category(); ?></a>
</span>
<h2 class="meta_title">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h2>
</div>
<div class="entry_content">
<p><?php the_content(); ?> </p>
</div>
</div>
</div>
</div>
<?php
}
}
wp_reset_postdata(); ?>
</div>
<div class="pages_navi">
<?php the_posts_pagination(array(
'prev_next' => false,
)); ?>
</div>