wp query - Exclude admin from WP_Query Contributors

We are using this code to get a list of all contributors but we would like to exclude the admin from this list. Currentl

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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745287649a4620660.html

相关推荐

  • wp query - Exclude admin from WP_Query Contributors

    We are using this code to get a list of all contributors but we would like to exclude the admin from this list. Currentl

    11小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信