refresh_blog_details
Fires after the blog details cache is cleared.
Description
Parameters (1)
- 0. $blog_id (int)
- The blog id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'refresh_blog_details', $blog_id );
- The following example is for adding a hook callback.
- // define the refresh_blog_details callback
- function action_refresh_blog_details( $blog_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'refresh_blog_details', 'action_refresh_blog_details', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'refresh_blog_details', 'action_refresh_blog_details', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/ms-blogs.php
- do_action( 'refresh_blog_details', $blog_id );