Skip to content

Instantly share code, notes, and snippets.

@wpsmith
Created August 15, 2012 18:26
Show Gist options
  • Select an option

  • Save wpsmith/3362153 to your computer and use it in GitHub Desktop.

Select an option

Save wpsmith/3362153 to your computer and use it in GitHub Desktop.
Get all Users who are not editors or administrators
<?php
// prepare arguments
$args = array(
'role' => 'author',
'query_id' => 'wps_not_author',
'meta_query' => array(
array(
'key' => 'wpsand_capabilities',
'value' => '"editor"',
'compare' => 'not like',
),
array(
'key' => 'wpsand_capabilities',
'value' => '"administrator"',
'compare' => 'not like',
),
),
);
// Create the WP_User_Query object
$author_query = new WP_User_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment