Get current user roles in WordPress

/**
 * Gets current user roles.
 *
 * @see https://wpcodebook.com/get-current-user-roles-in-wordpress/
 *
 * @return array
 */
function wpcodebook_get_current_user_roles() {
	$current_user = wp_get_current_user();
	return $current_user->roles;
}

Leave a Comment