只搜索WP帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了只搜索WP帖子相关的知识,希望对你有一定的参考价值。
To exclude pages from wordpress search results include the following in your theme's functions.php
/* *Only Search Posts */ function SearchFilter($query) { if ($query->is_search) { $query->set('post_type', 'post'); } return $query; } add_filter('pre_get_posts','SearchFilter');
以上是关于只搜索WP帖子的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress:WP_Query 如何使用自定义帖子类型应用搜索条件
将代码添加到 wp-settings.php/更改帖子的表前缀