<?php
/*
Template Name: Новости
*/
?>
<?php require('header.php'); ?>
<section class="news-template">
<div class="container">
<h2>новости</h2>
<div class="floatleft news-container">
<?php
$args = array(
'posts_per_page' => 1,
'post_type' => 'news',
);
$posts = query_posts($args);
foreach ($posts as $post) {
setup_postdata($post);?>
<article class="news">
<div class="icon">
<a href="<?php echo get_permalink(); ?>" title="Читать дальше">
<?php
$image_id = get_post_thumbnail_id();
$image_url = wp_get_attachment_image_src($image_id, 'Иконка');
$image_url = $image_url[0];
if ($image_url != '') {
echo '<img src="' . $image_url . '" width="220" height="140"/>';
} else {
echo '<img src="' . get_bloginfo("template_url") . '/img/temp/first-news.jpg" width="220" height="140"/>';
}
?>
</a>
</div>
<div class="news-preview">
<h3><a href="<?php echo get_permalink(); ?>"
title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<p class="news-data"><?php the_time('j.m.Y') ?>, <?php the_time('G:i'); ?></p>
<p class="news-description">
<?php the_content('Подробнее...'); ?>
</p>
</div>
<div class="clear"></div>
</article>
<?php
}
wp_reset_postdata();?>
<div class="page_navigation">
<?php if ( function_exists( 'wp_pagenavi' ) ) wp_pagenavi(); ?>
</div>
</div>
<aside class="floatright cal">
<div class="wp-cal-back wp-cal-control"></div>
<div class="wp-cal-next wp-cal-control"></div>
<?php get_calendar(); ?>
</aside>
</div>
<div class="clear"></div>
</section>
</div>
<?php require('footer.php'); ?>
Вот код страницы. Создал таксономию news, но суть проблемы теперь вот в чем, при смене страниц остается та же страницы.
Можете подсказать где свернул не туда? Заранее благодарен