最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

wp query - Exclude admin from WP_Query Contributors

programmeradmin1浏览0评论

We are using this code to get a list of all contributors but we would like to exclude the admin from this list. Currently the admin and any role above the contributor role is being shown with this code.

$args  = array('exclude' => array( 10, 18, 4, 15, 9 ), 'who' => 'contributors' );$wp_user_query = new WP_User_Query($args);

We are using this code to get a list of all contributors but we would like to exclude the admin from this list. Currently the admin and any role above the contributor role is being shown with this code.

$args  = array('exclude' => array( 10, 18, 4, 15, 9 ), 'who' => 'contributors' );$wp_user_query = new WP_User_Query($args);
Share Improve this question asked Jul 29, 2019 at 14:15 JoaMikaJoaMika 6986 gold badges27 silver badges58 bronze badges 1
  • We are just looking to get all contributors ONLY and exclude certain contributors from this list. I have tried to follow the documentation but couldn't figure this out. Also there doesn't seem to be a specific answer anywhere for this type of example. – JoaMika Commented Jul 29, 2019 at 14:29
Add a comment  | 

1 Answer 1

Reset to default 2

I realize now that you're not talking about WP_Query but WP_User_Query. Looking at the documentation for WP_User_Query it says this about the who parameter:

  • who (string) - Which users to query. Currently only 'authors' is supported. Default is all users.

Instead you can use the role parameter and exclude certain users by ID like so:

// Grab all contributors
$contributor_ids = new WP_User_Query( array(
    'role'      => 'contributor',
    'exclude'   => array( 10, 18, 4, 15, 9 )
) );

You can also pass multiple roles to the above. For more info check out the section on roles.

发布评论

评论列表(0)

  1. 暂无评论