我们的想法是为网站的作者(博客或类似的东西)制作一个搜索页面,搜索关键字将是作者的名字或姓氏。
据我所看,没有任何WordPress功能允许根据名字和姓氏查询作者。
答案 0 :(得分:1)
您需要使用meta_query
WP_User_Query
参数
codex有一个在这里搜索名字和姓氏的例子:https://codex.wordpress.org/Class_Reference/WP_User_Query#Examples
相关守则:
// The search term
$search_term = 'Ross';
// WP_User_Query arguments
$args = array (
'order' => 'ASC',
'orderby' => 'display_name',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'first_name',
'value' => $search_term,
'compare' => 'LIKE'
),
array(
'key' => 'last_name',
'value' => $search_term,
'compare' => 'LIKE'
),
)
);
// Create the WP_User_Query object
$wp_user_query = new WP_User_Query($args);
// Get the results
$authors = $wp_user_query->get_results();
// Check for results
if (!empty($authors)) {
echo '<ul>';
// loop trough each author
foreach ($authors as $author)
{
// get all the user's data
$author_info = get_userdata($author->ID);
echo '<li>'.$author_info->first_name.' '.$author_info->last_name.'</li>';
}
echo '</ul>';
} else {
echo 'No authors found';
}