Wordpress从主页或首页排除某些类别ID

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress从主页或首页排除某些类别ID相关的知识,希望对你有一定的参考价值。

Add to functions.php. Replace IDs (64, 104 below) with categories you want to exclude.
  1. function BI_exclude_category( $query ) {
  2. if ( $query->is_home() && $query->is_main_query() ) {
  3. $query->set( 'cat', '-64,-104' );
  4. }
  5. }
  6. add_action( 'pre_get_posts', 'BI_exclude_category' );

以上是关于Wordpress从主页或首页排除某些类别ID的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress - 在发布之前从所选类别中排除帖子类型

Wordpress:使用 post__not_in 排除自定义分类类别

PHP Wordpress从首页排除猫

php 从博客主页中排除博客类别

从Wordpress的搜索结果中排除特定类别

PHP 从Wordpress中的搜索结果中排除特定类别