仅使用Wordpress中的元键进行搜索

时间:2018-04-27 20:16:05

标签: wordpress

我需要帮助来进行查询以自定义默认的wordpress搜索。我不想在wordpress搜索中包含标题或内容或摘录,但希望根据该帖子的元值进行搜索。

在默认的wordpress搜索wordpress中添加元查询" AND"条件。如果有一种方法,如果元查询添加或条件,它也将没有问题。

请帮助

3 个答案:

答案 0 :(得分:1)

如果您指的是在搜索结果页上更改查询(例如http://example.com/?s=hello),请尝试以下选项之一:

选项#1

这是为了:

  

我不想在wordpress中包含标题或内容或摘录   搜索

挂钩pre_get_posts并清空s参数。

add_action( 'pre_get_posts', function( $wp_query ){
    if ( $wp_query->is_main_query() && $wp_query->is_search() ) {
        $wp_query->set( 's', '' );
    }
});

选项#2

这是为了:

  

在默认的wordpress搜索wordpress中添加元查询" AND"   条件。如果有一种方法,如果元查询添加或条件它将   也没事。

挂钩get_meta_sql并将AND替换为OR

add_filter( 'get_meta_sql', function( $sql, $meta_query, $type, $primary_table ){
    global $wpdb;

    if (
        'post' === $type &&
        $wpdb->posts === $primary_table &&
        is_main_query() && is_search()
    ) {
        if ( $sql['where'] && ' AND (' === substr( $sql['where'], 0, 6 ) ) {
            $sql['where'] = ' OR ' . substr( $sql['where'], 5 );
        }
    }

    return $sql;
}, 10, 4 );

选项#3

创建自定义搜索页面并使用自定义WP_Query实例查询帖子。

$q = new WP_Query([
    'meta_key'   => 'some_key',
    'meta_value' => 'some_value',
    // Or use meta_query
]);

选项#1和#2都很棘手,可能与您网站上的插件或任何修改搜索相关参数/查询的自定义代码冲突。甚至是标准查询。因此,请自行承担使用代码的风险。

希望有所帮助..

答案 1 :(得分:0)

我创建了一个ajax,我将输入文本作为“search_text”发送,并检查文本是否来自meta_key“job_is_featured”值,该值存储在postmeta中。并检查自定义帖子类型类别ID。

     $catids = '22';
  $args = array(
'post_type' => 'job', 'order' => 'DESC','posts_per_page' => '-1','s' => 'search_text' ,'orderby' => 'meta_value',
'tax_query' => array(
    array(
        'taxonomy' => 'job-category',
        'field'    => 'term_id',
        'terms' => $catids,
    ),
   ),
   'meta_query' => array(
'relation' => 'AND',
array(
'relation' => 'OR',
    array(
        'key' => 'job_is_featured',
        'value'    => 1,
        'compare' => '=',
    ),
    array(
        'key' => 'job_is_featured',
        'value'    => 0,
        'compare' => '=',
    ),
),
    array(
        'key' => 'job_location',
        'value'    => 'search_text',
        'compare' => 'LIKE',
    ),
),

 );
$the_query = new WP_Query( $args );

答案 2 :(得分:0)

以下是您需要在functions.php中添加的代码

此代码适用于Post Meta和Taxonomy

if(!function_exists('custom_wp_meta_and_tax_search')){
    function custom_wp_meta_and_tax_search($search_args){

        /* taxonomy query and meta query arrays */
        $tax_query = array();
        $meta_query = array();

        /* Keyword Based Search */
        if( isset ( $_GET['keyword'] ) ) {
            $keyword = trim( $_GET['keyword'] );
            if ( ! empty( $keyword ) ) {
                $search_args['s'] = $keyword;
            }
        }

        /* Custom Meta Key Parameter */ 
        if( isset($_GET['meta_input']) && ($_GET['meta_input'] != 'any')){
            $meta_query[] = array(
                'key' => 'custom_meta_key',
                'value' => $_GET['meta_input'],
                'compare' => 'like',                    
            );
        }

        $min_value = '';
        $max_value = '';
        if(isset($_GET['min-value']) && $_GET['min-value'] <> 'any'){
            $min_value = $_GET['min-value'];
        }

        if(isset($_GET['max-value']) && $_GET['max-value'] <> 'any'){
            $max_value = $_GET['max-value'];
        }
        /* Logic for Min and Max value Parameters */
        /* You need to replace custom_tax with custom taxonomy */
        if( isset($min_value) && ($min_value != 'any') && isset($max_value) && ($max_value != 'any') ){

            $min_value = doubleval($min_value);
            $max_value = doubleval($max_value);
            if( $min_value >= 0 && $max_value > $min_value ){
                $meta_query[] = array(
                    'key' => 'custom_tax',
                    'value' => array( $min_value, $max_value ),
                    'type' => 'NUMERIC',
                    'compare' => 'BETWEEN'
                );
            }
        }else if( isset($min_value) && ($min_value != 'any') ){
            $min_value = doubleval($min_value);
            if( $min_value > 0 ){
                $meta_query[] = array(
                    'key' => 'custom_tax',
                    'value' => $min_value,
                    'type' => 'NUMERIC',
                    'compare' => '>='
                );
            }
        }else if( isset($max_value) && ($max_value != 'any') ){
            $max_value = doubleval($max_value);
            if( $max_value > 0 ){
                $meta_query[] = array(
                    'key' => 'custom_tax',
                    'value' => $max_value,
                    'type' => 'NUMERIC',
                    'compare' => '<='
                );
            }
        }

        // /* if more than one taxonomies exist then specify the relation */
        $tax_count = count( $tax_query );
        if( $tax_count > 1 ){
            $tax_query['relation'] = 'AND';
        }

        /* if more than one meta query elements exist then specify the relation */
        $meta_count = count( $meta_query );
        if( $meta_count > 1 ){
            $meta_query['relation'] = 'AND';
        }

        if( $tax_count > 0 ){
            $search_args['tax_query'] = $tax_query;
        }

        /* if meta query has some values then add it to base home page query */
        $search_args['meta_query'] = $meta_query;


        /* Sort By meta value */
        /* You need to replace "custom_meta_key" with the key of custom field you created with post. */
        if( (isset($min_value) && ($min_value != 'any')) || ( isset($max_value) && ($max_value != 'any') ) ){
            $search_args['orderby'] = 'meta_value_num';
            $search_args['meta_key'] = 'custom_meta_key';
            $search_args['order'] = 'ASC';
        }



        return $search_args;
    }
}
add_filter('custom_search_parameters','custom_wp_meta_and_tax_search');

现在运行查询并使用Post Meta和分类法过滤您的帖子

$custom_search_args = array(
    'post_type' => 'post',
    'posts_per_page' => -1,
    'paged' => $paged,  
);
$custom_search_args = apply_filters('custom_search_parameters',$custom_search_args);
$search_query = new WP_Query( $custom_search_args );