搜索在带有特殊字符的wordpress中不起作用

时间:2018-07-06 15:15:31

标签: wordpress search

我正在尝试搜索不同自定义字段的标题和内容。

$args = array('exclude_from_search' => array( 'order-request'),
        "post_type" => array('post','document','page','event','product'),
        's' =>  get_search_query()
    );
$context['posts'] = Timber::get_posts($args);

但是,当我搜索类似 "Example ' Assistants" 的内容时,即使我搜索“示例”时该标题就是该帖子的标题。 如何包含一些特殊字符?

1 个答案:

答案 0 :(得分:0)

诀窍是将默认的转义值true更改为false。 https://developer.wordpress.org/reference/functions/get_search_query/

's' =>  get_search_query(false)