Skip to content

Instantly share code, notes, and snippets.

@iladarsda
Last active August 29, 2015 13:56
Show Gist options
  • Save iladarsda/8859890 to your computer and use it in GitHub Desktop.
Save iladarsda/8859890 to your computer and use it in GitHub Desktop.
WordPress code snippets
function get_emails_by_role($role) {
$arr = array();
$args = array("role" => $role);
$users = get_users($args );
foreach ($users as $key => $value) {
$arr[] = $value->data->user_email;
}
return $arr;
}
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment