Last active
December 23, 2019 18:27
-
-
Save kellenmace/ff068164a6d0aaf23679dbcb7698fff0 to your computer and use it in GitHub Desktop.
Get user role in WordPress
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 | |
/* | |
* Get user's role. | |
* | |
* If $user parameter is not provided, returns the current user's role. | |
* Only returns the user's first role, even if they have more than one. | |
* | |
* @param mixed $user User ID or object. Pass nothing for current user. | |
* | |
* @return string The User's role, or an empty string if none. | |
*/ | |
function km_get_user_role( $user = null ) { | |
$user = $user ? new WP_User( $user ) : wp_get_current_user(); | |
return $user->roles ? $user->roles[0] : ''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very handy. Thanks!