doubinduo3364 2016-12-04 06:14
浏览 106
已采纳

使用WP_User_Query进行名字和姓氏搜索

I am trying to develop a directory search. The following works fine for last name search with like. But, I need last and first name to search together. How can I make that happen:

function dispDirectory()
{
  global $user_ID;

  // Disallow directory if there is a messaging administrator and this person is not it.
  if ($this->admin_user_id && $this->admin_user_id != $user_ID) {
    return '';
  }

    $directory = "<form name='form' method='post'><label for='clientname'>Client Name: </label>
    <input name='clientname' id='clientname' type='text' style='width: 181px;'
    value=''/><input type='submit'></form>";

    $clientname= $_POST["clientname"];

    $search_string = $clientname;

    $args  = array(
        'meta_key' => 'last_name',
        'meta_compare' => 'like',
        'meta_value' => $search_string,
    );

    $wp_user_query = new WP_User_Query($args);
    $wp_user_query->query_orderby = str_replace( 'user_login', 'wp_usermeta.meta_value', $wp_user_query->query_orderby );
    $wp_user_query->query();

    $users = $wp_user_query->get_results();


  foreach($users as $u)
  {
    $firstName = get_user_meta($u->ID, 'first_name', true);
    $lastName = get_user_meta($u->ID, 'last_name', true);         

    $directory .= '<p><strong>'.$lastName.', '.$firstName.'</strong> - <a href="'.$this->actionURL.'newmessage&to='.$u->ID.'">'.__('Send Message', 'cartpaujpm').'</a></p>';
  }
  return $directory;
}
  • 写回答

2条回答 默认 最新

  • dounei9043 2016-12-04 06:45
    关注

    You can search by multiple meta fields like below meta query,

    $args  =  array ( 
            'meta_query' => array(
            'relation' => 'OR',
            array(
                'key'     => 'first_name',
                'value'   => $search_string,
                'compare' => 'LIKE'
            ),
            array(
                'key'     => 'last_name',
                'value'   => $search_string,
                'compare' => 'LIKE'
            )
            )
        );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请看一下,学校实验要求,我需要具体代码
  • ¥50 pc微信3.6.0.18不能登陆 有偿解决问题
  • ¥20 MATLAB绘制两隐函数曲面的交线
  • ¥15 求TYPCE母转母转接头24PIN线路板图
  • ¥100 国外网络搭建,有偿交流
  • ¥15 高价求中通快递查询接口
  • ¥15 解决一个加好友限制问题 或者有好的方案
  • ¥15 急matlab编程仿真二阶震荡系统
  • ¥20 TEC-9的数据通路实验
  • ¥15 ue5 .3之前好好的现在只要是激活关卡就会崩溃