资源共享,记录个人心得等

wordpress首页不显示某一分类下所有文章

   在主题functions.php 修改

function exclude_category_home( $query ) {  
if ( $query->is_home ) {  
$query->set( 'cat', '-20, -22' ); //你要排除的分类 ID  
}  
return $query;  
}  
add_filter( 'pre_get_posts', 'exclude_category_home' );

这也是我是用的方法。

赞(0)
转载需标明出处Lee's Blog » wordpress首页不显示某一分类下所有文章

评论 抢沙发

登录

找回密码

注册