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