Add get_role() convenience wrapper.

git-svn-id: https://develop.svn.wordpress.org/trunk@3238 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-11-29 18:47:28 +00:00
parent 3b7a500276
commit 7cec380314
1 changed files with 7 additions and 0 deletions

View File

@ -279,6 +279,13 @@ function current_user_can($capability) {
return call_user_func_array(array(&$current_user, 'has_cap'), $args);
}
// Convenience wrapper around $wp_roles.
function get_role($role) {
global $wp_roles;
return $wp_roles->get_role($role);
}
//
// These are deprecated. Use current_user_can().
//