set_current_user
The WordPress Core set current user hook.
Description
Parameters (1)
- 0. $kses_init (string) =>
'kses_init'
- The kses init.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'set_current_user', $kses_init );
- The following example is for adding a hook callback.
- // define the set_current_user callback
- function action_set_current_user( $kses_init ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'set_current_user', 'action_set_current_user', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'set_current_user', 'action_set_current_user', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /wp-includes/default-filters.php
- add_action( 'set_current_user', 'kses_init' );
- /wp-includes/pluggable.php
- do_action( 'set_current_user' );