Last active
August 29, 2015 14:14
-
-
Save Mamaduka/df3e23ea1546bcffbeac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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