wp_roles()

Retrieves the global WP_Roles instance and instantiates it if necessary.


Description Description


Return Return

(WP_Roles) WP_Roles global instance if not already instantiated.


Top ↑

Source Source

File: wp-includes/capabilities.php

738
739
740
741
742
743
744
745
function wp_roles() {
    global $wp_roles;
 
    if ( ! isset( $wp_roles ) ) {
        $wp_roles = new WP_Roles();
    }
    return $wp_roles;
}

Top ↑

Changelog Changelog

Changelog
Version Description
4.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.