update_option_blog_public
The WordPress Core update option blog public hook.
Description
Parameters (3)
- 0. $update_blog_public (string) =>
'update_blog_public'
- The update blog public.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'update_option_blog_public', $update_blog_public, $int, $int );
- The following example is for adding a hook callback.
- // define the update_option_blog_public callback
- function action_update_option_blog_public( $update_blog_public, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'update_option_blog_public', 'action_update_option_blog_public', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'update_option_blog_public', 'action_update_option_blog_public', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/ms-default-filters.php
- add_action( 'update_option_blog_public', 'update_blog_public', 10, 2 );