Wordpress,pre_get_posts中的多个meta_key

use*_*309 8 wordpress

是否有可能增加两个meta_key'spre_get_posts

我当前的查询

$query->set('s', '' ); 
$query->set( 'meta_key', 'cat_adresse_stadtteil' );
$query->set( 'meta_value', array('charlottenburg', 'wilmersdorf', 'schmargendorf') ); 
Run Code Online (Sandbox Code Playgroud)

加上这个

$query->set('orderby','meta_value_num');
$query->set('meta_key', 'rank');
$query->set('order', 'ASC');  
Run Code Online (Sandbox Code Playgroud)



编辑
好的,我找到了这个解决方案(链接 #example 2)

$args = array(
    'numberposts' => -1,
    'post_type' => 'event',
    'meta_query' => array(
        'relation' => 'AND',
        array(
            'key' => 'location',
            'value' => 'Melbourne',
            'compare' => '='
        ),
        array(
            'key' => 'attendees',
            'value' => 100,
            'type' => 'NUMERIC',
            'compare' => '>'
        )
    )
);
Run Code Online (Sandbox Code Playgroud)

但它不起作用,任何想法有什么不对?

$query->set('meta_query',array(
             array( 'key' => 'cat_adresse_stadtteil',
                    'value' => array('charlottenburg', 'wilmersdorf', 'schmargendorf'), ),
            array(  'key' => 'rank'
                    'orderby' => 'meta_value_num',
                    'order' => 'ASC' ) ) ); 
Run Code Online (Sandbox Code Playgroud)

bir*_*ire 15

要合并这两个部分,您可以尝试以下方法:

add_action( 'pre_get_posts', function( $q ) {    

    // Only modify the main query on the front-end:
    if( ! is_admin() && $q->is_main_query() )
    {
        $meta_query = array(
          array(
            'key'     => 'cat_adresse_stadtteil',
            'value'   => array('charlottenburg', 'wilmersdorf', 'schmargendorf'),
            'compare' => 'IN',
          ),
        );
        $q->set( 'meta_query', $meta_query      );
        $q->set( 'meta_key',   'rank'           );
        $q->set( 'orderby',    'meta_value_num' );
        $q->set( 'order',      'ASC'            );
        $q->set( 's',          ''               );
    }
});
Run Code Online (Sandbox Code Playgroud)

看起来你错过了compare参数并在错误的地方使用orderorderby参数.我不确定你为什么要重置搜索参数.

生成的SQL查询将类似于:

SELECT SQL_CALC_FOUND_ROWS wp_posts.ID
    FROM wp_posts 
    INNER JOIN wp_postmeta
        ON (wp_posts.ID = wp_postmeta.post_id)
    INNER JOIN wp_postmeta AS mt1
        ON (wp_posts.ID = mt1.post_id)
    WHERE 1=1 
        AND wp_posts.post_type 
            IN ('post', 'page', 'attachment' )
        AND (wp_posts.post_status = 'publish'
            OR wp_posts.post_author = 1
            AND wp_posts.post_status = 'private')
        AND (wp_postmeta.meta_key = 'rank'
        AND (mt1.meta_key = 'cat_adresse_stadtteil'
        AND CAST(mt1.meta_value AS CHAR) 
            IN ('charlottenburg','wilmersdorf','schmargendorf')) )
    GROUP BY wp_posts.ID
    ORDER BY wp_postmeta.meta_value+0 ASC
    LIMIT 0, 10
Run Code Online (Sandbox Code Playgroud)


Fat*_*ARI 5

您可以将此查询转换为pre_pget_posts:

$meta_query_args = array(
    'relation' => 'AND', // "OR"
    array(
        'key'     => '_my_custom_key',
        'value'   => 'Value I am looking for',
        'compare' => '='
    ),
    array(
        'key'     => '_your_min_model_key',
        'value'   => 1453,
        'compare' => '>'
    ),
    array(
        'key'     => '_your_max_model_key',
        'value'   => 1923,
        'compare' => '<'
    )
);
$meta_query = new WP_Meta_Query( $meta_query_args );
Run Code Online (Sandbox Code Playgroud)

比较参数详细信息:

compare (string) - Operator to test. Possible values are '=', '!=', '>', '>=', '<', '<=', 'LIKE', 'NOT LIKE', 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN', 'EXISTS' (only in WP >= 3.5), and 'NOT EXISTS' (also only in WP >= 3.5). Values 'REGEXP', 'NOT REGEXP' and 'RLIKE' were added in WordPress 3.7. Default value is '='. 
Run Code Online (Sandbox Code Playgroud)