update_blog_public
Fires after the current blog's 'public' setting is updated.
Description
Parameters (2)
- 0. $blog_id (int)
- The blog id.
- 1. $value (string)
- The value of blog status.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'update_blog_public', $blog_id, $value );
- The following example is for adding a hook callback.
- // define the update_blog_public callback
- function action_update_blog_public( $blog_id, $value ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'update_blog_public', 'action_update_blog_public', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'update_blog_public', 'action_update_blog_public', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/ms-blogs.php
- do_action( 'update_blog_public', $blog_id, $value ); // Moved here from update_blog_public().