Skip to content

Instantly share code, notes, and snippets.

@dbarkley
Last active August 29, 2015 13:57
Show Gist options
  • Save dbarkley/9378298 to your computer and use it in GitHub Desktop.
Save dbarkley/9378298 to your computer and use it in GitHub Desktop.
function admin_emails_function() {
$admin_emails = array();
$args = array(
'role' => 'Administrator',
'fields' => 'all_with_meta'
);
$user_query = new WP_User_Query( $args );
$admins = $user_query->get_results();
foreach ($admins as $admin) {
$admin_emails[] = $admin->user_email;
}
return implode(', ', $admin_emails);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment