WP_Roles::_init
Deprecated since 4.9.0. It is no longer supported and may be removed in future releases. Use WP_Roles::for_site() instead.
Sets up the object properties.
The role key is set to the current prefix for the $wpdb object with 'user_roles' appended. If the $wp_user_roles global is set, then it will be used and the role option will not be updated or used.
Method of the class: WP_Roles{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->_init();
Changelog
| Since 2.1.0 | Introduced. |
| Deprecated since 4.9.0 | Use WP_Roles::for_site() |
WP_Roles::_init() WP Roles:: init code WP 6.8.3
protected function _init() {
_deprecated_function( __METHOD__, '4.9.0', 'WP_Roles::for_site()' );
$this->for_site();
}