wp_roles_init
After the roles have been initialized, allow plugins to add their own roles.
Description
Parameters (1)
- 0. $instance (WP_Roles)
- A reference to the
WP_Roles
object.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_roles_init', $instance );
- The following example is for adding a hook callback.
- // define the wp_roles_init callback
- function action_wp_roles_init( $instance ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_roles_init', 'action_wp_roles_init', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_roles_init', 'action_wp_roles_init', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-roles.php
- do_action( 'wp_roles_init', $this );