如何在wordpress搜索栏中更改搜索动作?

时间:2018-12-21 08:01:56

标签: mysql wordpress search

创建一个新帖子并发布。

标题为my test for search,其内容如下:

no host route

检查wordpress数据库中发生的情况。

 select post_title from wp_posts
     where post_content like "%no%"
       and post_content like "%route%"
       and post_content like "%to%"
       and post_content like "%host%";

名为my test for search的帖子不会出现在选择结果中。
在wordpress搜索栏中键入no route to host,然后单击Enter。 名为my test for search的帖子显示为结果。

enter image description here

我发现网页包含to的原因,在左上角有一个单词Customize,其中包含搜索到的单词to
如何在wordpress搜寻栏更改此类搜索动作?
我想在wordpress saerch栏中进行搜索,例如,当您键入no route to host时,等于以下sql命令。

select post_title from wp_posts where post_content like "%no%route%to%host%";

我的wordpress中的所有插件。

CodePen Embedded Pens Shortcode
Crayon Syntax Highlighter
Disable Google Fonts
Quotmarks Replacer
SyntaxHighlighter Evolved

1 个答案:

答案 0 :(得分:4)

wp-includes/class-wp-query.php:1306上的SQL WHERE子句有 this 附加:

<?php
// wp-includes/class-wp-query.php:~1306

foreach ( $q['search_terms'] as $term ) {
    //...
    $like = $n . $wpdb->esc_like( $term ) . $n;
    $search .= $wpdb->prepare( "{$searchand}(({$wpdb->posts}.post_title $like_op %s) $andor_op ({$wpdb->posts}.post_excerpt $like_op %s) $andor_op ({$wpdb->posts}.post_content $like_op %s))", $like, $like, $like );
    // ...

因此,我将加入pre_get_posts,并以显式“ search_terms”的形式提供查询词,因为它们已通过LIKE修饰符添加到该子句中就像您说的正在寻找!

因此,我们可能会执行以下操作:

<?php
// functions.php

function fuzzify_query(\WP_Query $q) {
    if (true === $q->is_search()
        && true === property_exists($q, 'query')
        && true === key_exists('s', $q->query)
    ) {
        $original_query = $q->query['s'];
        $words          = explode(' ', $original_query);
        $fuzzy_words    = array_map(
            function($word) {
                return '%'.$word.'%';
            },
            $words
        );

        $q->query_vars['search_terms'] = $fuzzy_words;

        return $q;
    }

    return $q;
}

 add_action('pre_get_posts', 'fuzzify_query', 100); // Or whatever priority your fuzziness requires!