update_option_wplang
The WordPress Core update option wplang hook.
Description
Parameters (3)
- 0. $wp_clean_update_cache (string) =>
'wp_clean_update_cache'
- The
wp
clean update 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_wplang', $wp_clean_update_cache, $int, $int );
- The following example is for adding a hook callback.
- // define the update_option_wplang callback
- function action_update_option_wplang( $wp_clean_update_cache, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'update_option_wplang', 'action_update_option_wplang', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'update_option_wplang', 'action_update_option_wplang', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/update.php
- add_action( 'update_option_WPLANG', 'wp_clean_update_cache' , 10, 0 );