jetpack_pre_theme_upgrade_translations
Pre-upgrade action.
Description
Parameters (2)
- 0. $theme (object)
- WP_Theme object
- 1. $this_themes (array)
- Array of theme objects
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'jetpack_pre_theme_upgrade_translations', $theme, $this_themes );
- The following example is for adding a hook callback.
- // define the jetpack_pre_theme_upgrade_translations callback
- function action_jetpack_pre_theme_upgrade_translations( $theme, $this_themes ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'jetpack_pre_theme_upgrade_translations', 'action_jetpack_pre_theme_upgrade_translations', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'jetpack_pre_theme_upgrade_translations', 'action_jetpack_pre_theme_upgrade_translations', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /json-endpoints/jetpack/class.jetpack-json-api-themes-modify-endpoint.php
- do_action( 'jetpack_pre_theme_upgrade_translations', $theme, $this->themes );