将搜索限制为帖子和页面

时间:2021-02-26 作者:Ashley Gibson

我正在为我的网站添加一个搜索栏,但我希望搜索栏只抓取帖子和页面,每次我要求转到某个页面时,它都会将一个页面作为索引。php

我想知道你是否知道一个解决方案

<?php echo get_search_form( $echo ); ?>

1 个回复
SO网友:MMK

并将其添加到函数中。php,如果您只想在帖子和页面中搜索
函数mk\\u searchfilter($查询){

    if ($query->is_search && !is_admin() ) {
        $query->set(\'post_type\',array(\'post\',\'page\'));
    }
 
return $query;
}
 
add_filter(\'pre_get_posts\',\'mk_searchfilter\');

相关推荐

search based on custom field

我的问题是,有没有办法将wordpress的搜索配置为在自定义帖子类型中搜索自定义字段值。//------------html code--------------------// <input type=\"text\" name=\"keyword\" id=\"keyword\" onkeyup=\"fetch()\"></input> <div id=\"datafetch\"></div> &#x