Wordpress WP_User_Query搜索

时间:2014-04-17 06:54:44

标签: php wordpress-plugin wordpress

我正在尝试编写用户搜索查询,我有位置和搜索关键字(用户名)

我需要搜索所有用户,其姓氏或名字与搜索关键字匹配 指定的loaction 我的代码在这里,

$args = array(
    'meta_query' => array(
        'relation' => 'AND',
        0 => array(
            'key'     => 'last_name',
            'value'   => $search_string,
            'compare' => 'LIKE'
        ),
        1 => array(
            'key'     => 'first_name',
            'value'   => $search_string,
            'compare' => 'LIKE'
        ),
        2 => array(
            'key'     => 'user_city',
            'value'   => $Location,
            'compare' => 'LIKE'
        ),
    ),

 );

$users = new WP_User_Query( $args);
$users = $users->get_results();

但我希望'关系'或者名字和姓氏以及关系和位置,我该怎么做?

3 个答案:

答案 0 :(得分:0)

我认为在wp_query中不可能有多个关系字段。请参考https://codex.wordpress.org/Class_Reference/WP_User_Query

作为替代方案,您可以查看pre_user_query,它是在调用查询之前调用函数的钩子。

add_filter( 'pre_user_query', 'some_function' );

function some_function () {
//do custom query altering here. 
}

答案 1 :(得分:0)

试试这个

$user_ex = explode(' ', $search_string);
    if($user_ex[1]) {
    $name_array = preg_split("/[\s,]+/", $search_string_user);
        $args = new WP_User_Query( array(
        'meta_query' => array(
            'relation' => 'OR',
            array(
                'relation' => 'OR',
                array(
                    'key' => 'user_city',
                    'value' => $search_string,
                    'compare' => 'LIKE'
                ),
            ),
            array(
                'relation' => 'AND',
                array(
                    'key' => 'first_name',
                    'value' => $name_array[0],
                    'compare' => 'LIKE'
                ),
                array(
                    'key' => 'last_name',
                    'value' => $name_array[1],
                    'compare' => 'LIKE'
                ),
            ),
        ),
    }

答案 2 :(得分:0)

请使用

$args = array( 'meta_query' => 
    array(
    array( 
       'relation' => 'OR', 
       array( 'key' => 'last_name', 'value' => $search_string, 'compare' => 'LIKE' ), 
       array( 'key' => 'first_name', 'value' => $search_string, 'compare' => 'LIKE' ),
    ), 
    array( 'key' => 'user_city', 'value' => $Location, 'compare' => 'LIKE' ), ), 
);