显示特定类别的帖子 - Wordpress

时间:2014-07-31 10:45:21

标签: php post

我遇到了一个问题,我需要在某个类别中仅展示我家中的特定帖子,否则它会显示任何内容以及发布的所有内容,并且我会将该网站上的帖子用于其他目的。

<?php query_posts('posts_per_page=3'); while(have_posts()) : the_post(); ?> 

   <span style="float: left; width: 180px; height: 180px; padding: 0px 60px 0px 0px;"><?php the_post_thumbnail( array(220,200) ); ?>   </span>                  

    <h3 class="excerptHeader" style="margin-top: 0px;"><a class="excerptHeader" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>

     <span class="excerpt"><p><?php echo substr(get_the_excerpt(), 0,80); ?> [...]</p></span>

      <span class="excerpt"><p><a class="excerptLink" href="<?php the_permalink(); ?>">Read full article</a></p></span>

<?php endwhile; wp_reset_query(); ?>

我尝试过添加:

1 个答案:

答案 0 :(得分:1)

更改您的查询参数,如下所示:

query_posts('posts_per_page=3&cat=nn')

nn是您希望从中选择帖子的类别的ID

查看query_posts页面了解详情。