Skip to content

Instantly share code, notes, and snippets.

@todiadiyatmo
Last active August 29, 2015 14:09
Show Gist options
  • Save todiadiyatmo/c52f0276c54e09aed8d8 to your computer and use it in GitHub Desktop.
Save todiadiyatmo/c52f0276c54e09aed8d8 to your computer and use it in GitHub Desktop.
Get Current User Role
<?php
global $current_user, $wpdb;
$role = $wpdb->prefix . 'capabilities';
$current_user->role = array_keys($current_user->$role);
$role = $current_user->role[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment