clean_user_cache
Fires immediately after the given user's cache is cleaned.
Description
Parameters (2)
- 0. $user_id (int)
- The user id.
- 1. $user (WP_User)
- User object.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'clean_user_cache', $user_id, $user );
- The following example is for adding a hook callback.
- // define the clean_user_cache callback
- function action_clean_user_cache( $user_id, $user ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'clean_user_cache', 'action_clean_user_cache', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'clean_user_cache', 'action_clean_user_cache', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/user.php
- do_action( 'clean_user_cache', $user->ID, $user );