WordPress首页排除特定分类文章

quality,Q 70

1638704622 20211205114342 61aca5ee51dad

一般情况下博客首页显示的都是最新日志,如果想将一些特定分类中的文章不在首页显示,下面的方法可以帮你方便地在首页排除特定分类的文章。

复制下面的代码到你的主题functions.php文件:

  1. function exclude_category_home( $query ) {
  2.     if ( $query->is_home ) {
  3.         $query->set( ‘cat’, ‘-5, -34’ );
  4.     }
  5.     return $query;
  6. }
  7. add_filter( ‘pre_get_posts’, ‘exclude_category_home’ );

修改第3行的分类ID,然后保存文件,就大功告成了。

原文:http://www.wprecipes.com/how-to-exclude-specific-categories-from-your-blog-homepage

类似文章