admin管理员组

文章数量:1418686

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.

本文标签: wp queryExclude admin from WPQuery Contributors