Answers for "inbuilt function of wordpress for getting all the roles of the users"

PHP
0

how to get all roles in wordpress

/* get all role in wordpress in associative key = role(slug) => value(Role Display name) by [email protected]  */
function get_role_names() {

global $wp_roles;

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

return $wp_roles->get_names();
}
Posted by: Guest on January-27-2021

Code answers related to "inbuilt function of wordpress for getting all the roles of the users"

Browse Popular Code Answers by Language