只搜索WP帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了只搜索WP帖子相关的知识,希望对你有一定的参考价值。

To exclude pages from wordpress search results include the following in your theme's functions.php
  1. /*
  2.  *Only Search Posts
  3.  */
  4. function SearchFilter($query) {
  5. if ($query->is_search) {
  6. $query->set('post_type', 'post');
  7. }
  8. return $query;
  9. }
  10.  
  11. add_filter('pre_get_posts','SearchFilter');

以上是关于只搜索WP帖子的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress:WP_Query 如何使用自定义帖子类型应用搜索条件

php 在按作者姓名搜索时,展开WP搜索以按作者显示帖子

将代码添加到 wp-settings.php/更改帖子的表前缀

链接到帖子的 ID (Wp)

如何使用 WordPress REST API v2 搜索帖子?

Wp查询日期之间的帖子,但任何年份