Wordpress - 显示特定类别的限制帖子

时间:2014-02-18 10:43:18

标签: php wordpress

在wordpress中,我需要在特定类别的主页上显示帖子。

  • 需要五个帖子标题
  • 类别是新闻
  • 在主页上显示

我使用插件商业新闻,但是当我激活这个插件nex gen gallery插件现在会发生冲突我不知道如何解决这个请建议。

1 个答案:

答案 0 :(得分:0)

以下是显示特定类别帖子的代码。要在主页上显示,您必须在index.php文件中进行以下更改。

$query = new WP_Query( array('category_name'=>'news', 'posts_per_page'=> '5') ); 
  if ( $query->have_posts() ) : 
       while ( $query->have_posts() ) : $query->the_post();
             get_template_part( 'content', get_post_format() ); 
       endwhile; 
  endif;