Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to get all roles in wordpress

/* get all role in wordpress in associative key = role(slug) => value(Role Display name) by joshiyogesh0333@gmail.com  */
function get_role_names() {

global $wp_roles;

if ( ! isset( $wp_roles ) )
    $wp_roles = new WP_Roles();

return $wp_roles->get_names();
}
Source by wordpress.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #roles #wordpress
ADD COMMENT
Topic
Name
1+2 =