Skip to content

Instantly share code, notes, and snippets.

@Mamaduka
Last active August 29, 2015 14:14
Show Gist options
  • Save Mamaduka/df3e23ea1546bcffbeac to your computer and use it in GitHub Desktop.
Save Mamaduka/df3e23ea1546bcffbeac to your computer and use it in GitHub Desktop.
<?php
$key = $wpdb->get_blog_prefix( get_current_blog_id() ) . 'capabilities';
// Setup new meta query for user Roles
$meta_query = array(
'relation' => 'OR',
array(
'key' => $key,
'value' => 'administrator',
'compare' => 'LIKE'
),
array(
'key' => $key,
'value' => 'editor',
'compare' => 'LIKE'
),
array(
'key' => $key,
'value' => 'author',
'compare' => 'LIKE'
)
);
$users = get_users( array( 'meta_query' => $meta_query ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment