blog_privacy_selector
This action is documented in wp-admin/options-reading.php.
Description
do_action( 'blog_privacy_selector' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'blog_privacy_selector' );
- The following example is for adding a hook callback.
- // define the blog_privacy_selector callback
- function action_blog_privacy_selector( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'blog_privacy_selector', 'action_blog_privacy_selector', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'blog_privacy_selector', 'action_blog_privacy_selector', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /wp-admin/install.php
- do_action( 'blog_privacy_selector' );
- /wp-admin/options-reading.php
- do_action( 'blog_privacy_selector' );