Skip to content

Instantly share code, notes, and snippets.

@cloudcreatordotio
Forked from hlashbrooke/function.php
Created May 30, 2020 15:39
Show Gist options
  • Save cloudcreatordotio/f8cb9cc23004e76bea29c5a5bf032e96 to your computer and use it in GitHub Desktop.
Save cloudcreatordotio/f8cb9cc23004e76bea29c5a5bf032e96 to your computer and use it in GitHub Desktop.
WordPress: Check if user role exists
function role_exists( $role ) {
if( ! empty( $role ) ) {
return $GLOBALS['wp_roles']->is_role( $role );
}
return false;
}
if( role_exists( 'editor' ) ) {
// The 'editor' role exists!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment