<?php wp_footer(); ?>
</body>
</html>
<?php
// Template name: Page News
?>
<?php get_header(); ?>
<main>
<div class="main-content">
<h1>Новости</h1>
<?php
$args = array(
'post_type' => 'post',
'cat' => 1,
'orderby' => 'date',
'posts_per_page' => 4
);
$the_query = new WP_Query( $args );
if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?>
<div class="articles">
<div class="articles-gen-img">
<a href="<?php the_permalink(); ?>">
<?php if(has_post_thumbnail()): ?>
<?php the_post_thumbnail(); ?>
<?php else: ?>
<img src="<?php bloginfo('template_url'); ?>/img/no_img.jpg">
<?php endif; ?>
</a>
</div><!--articles-gen-img-->
<div class="articles-head">
<span class="articles-date">
<img src="<?php bloginfo('template_url'); ?>/img/articles-autor.jpg" alt="admin" /> <span><?php the_author(); ?></span> - <?php the_time('j F Y в H:i'); ?>
</span>
<span class="articles-comments"><img src="<?php bloginfo('template_url'); ?>/img/articles-comment.jpg" alt="commets" /> <a href="#"><?php comments_popup_link('Нет комментариев', '1 комментарий', '%1$s комментариев', '', 'Комментирование отключено'); ?></a>
</span>
</div><!--articles-head-->
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>">Читать дальше...</a></p>
</div><!--articles-->
<?php endwhile; ?>
<div class="pager">
<?php if (function_exists('wp_corenavi')) wp_corenavi(); ?>
</div>
<?php endif; ?>
</div><!--main-content-->
</main>
<?php get_footer(); ?>
<?php // wp_footer() стоит вынести в footer.php ?>
<?php get_footer(); ?>
</div>
<?php wp_footer(); ?>
</body>
</html>
<?php wp_footer(); ?>
</body>
</html>
<?php
if ( have_posts() ) :
query_posts('cat=25 & paged=$page');
while (have_posts()) : the_post();
?>
<div class="col-12 col-md-6">
<div class="container">
<div class="row">
<div class="col-12 news-block">
<?php echo get_the_post_thumbnail( $id, array(400,300) ); ?>
<p class="news-text text-justify my-4">
<?php echo CFS() -> get('intro');?>
</p>
<a class="news-a text-left" href="<?php the_permalink(); ?>"><span>П</span>одробнее</a>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<div class="page-nav col-12 text-center my-4">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
<?php endif; wp_reset_query(); ?>
page-news - https://yadi.sk/d/b-zioDKK3aA4SQ
functions - https://yadi.sk/d/IppA-0j13aA4ZH
style - https://yadi.sk/d/vOY_nLoe3aA4dv
замените эти файлы и проверьте снова.
не забудьте почистить кэш браузера или сайта (если он у вас есть)