我试图让我的新闻页面只显示一个类别的内容(数字3),但我似乎无法让它工作。它不只是显示类别3中的帖子,而是显示所有类别中的帖子。
这是我的代码:
<?php get_header(); ?>
<div class="content news_page">
<h1>Latest News</h1>
<?php $args = array(
\'post_type\' => \'post\' ,
\'orderby\' => \'date\' ,
\'order\' => \'DESC\' ,
\'posts_per_page\' => 6,
\'category\' => \'3\',
\'paged\' => get_query_var(\'paged\'),
\'post_parent\' => $parent
); ?>
<?php query_posts($args); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="large-4 medium-4 small-12 columns">
<div class="latest_news_cont">
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail(); ?></a>
<a href="<?php the_permalink() ?>"><h5><?php the_title(); ?></h5></a>
<?php the_excerpt(); ?>
<p style="text-align:center;"><a href="<?php the_permalink() ?>" class="readmore_news">Read more</a></p>
<br>
<div class="clear"></div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<div class="clear"></div>
</div><!--end of content-->
<div class="clear"></div>
<?php get_footer(); ?>