php 从搜索结果中排除某些页面。信用:https://gist.github.com/PixelFrau/5150451 #PHP #search
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从搜索结果中排除某些页面。信用:https://gist.github.com/PixelFrau/5150451 #PHP #search相关的知识,希望对你有一定的参考价值。
/** Exclude page from search results */
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post__not_in', array(1, 2, 3));
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
以上是关于php 从搜索结果中排除某些页面。信用:https://gist.github.com/PixelFrau/5150451 #PHP #search的主要内容,如果未能解决你的问题,请参考以下文章
从 gcov/lcov 覆盖结果中排除某些功能
PHP Wordpress从主页面或首页中排除某些类别ID
如何从 git grep 搜索中排除某些目录/文件
如何从 Spring Security 中的会话管理(超时/并发检查)中排除某些页面?
使用 .htaccess 排除奇怪的页面
php 从循环中排除子页面