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

Posted

tags:

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

Found this bit of code all over the place, except it missed out a very crucial part of the code which was to add a "-" in front of the ID you wish to exclude. Add this to functions.php in your theme folder.
  1. function SearchFilter($query)
  2. {
  3. if ($query->is_search)
  4. {
  5. $query->set('cat',-get_cat_ID('CategoryName'));
  6. }
  7. return $query;
  8. }
  9. add_filter('pre_get_posts','SearchFilter');

以上是关于从Wordpress的搜索结果中排除特定类别的主要内容,如果未能解决你的问题,请参考以下文章

从 Woocommerce 相关产品中排除特定产品类别

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

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

从 WooCommerce 中的类别价格后缀更改中排除特定产品 ID

从特定的 Wordpress 类别中提取帖子

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