从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.
function SearchFilter($query) { if ($query->is_search) { $query->set('cat',-get_cat_ID('CategoryName')); } return $query; } add_filter('pre_get_posts','SearchFilter');
以上是关于从Wordpress的搜索结果中排除特定类别的主要内容,如果未能解决你的问题,请参考以下文章