Skip to content

Instantly share code, notes, and snippets.

@Jerl92
Created September 13, 2024 02:04
Show Gist options
  • Select an option

  • Save Jerl92/56e9f4da4346b5229982473010dfba84 to your computer and use it in GitHub Desktop.

Select an option

Save Jerl92/56e9f4da4346b5229982473010dfba84 to your computer and use it in GitHub Desktop.
How to get current user role in WordPress
<?php
function my_get_current_user_roles() {
if( is_user_logged_in() ) {
$user = wp_get_current_user();
$roles = ( array ) $user->roles;
return $roles; // This will returns an array
} else {
return array();
}
}
?>
@Jerl92
Copy link
Author

Jerl92 commented Sep 13, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment