update_option_gmt_offset
The WordPress Core update option gmt offset hook.
Description
Parameters (1)
- 0. $delete_get_calendar_cache (string) =>
'delete_get_calendar_cache'
- The delete get calendar cache.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'update_option_gmt_offset', $delete_get_calendar_cache );
- The following example is for adding a hook callback.
- // define the update_option_gmt_offset callback
- function action_update_option_gmt_offset( $delete_get_calendar_cache ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'update_option_gmt_offset', 'action_update_option_gmt_offset', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'update_option_gmt_offset', 'action_update_option_gmt_offset', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/default-filters.php
- add_action( 'update_option_gmt_offset', 'delete_get_calendar_cache' );