jetpack_sync_current_theme_support
The WordPress Core jetpack sync current theme support hook.
Description
Parameters (1)
- 0. $callable (unknown)
- The callable.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'jetpack_sync_current_theme_support', $callable );
- The following example is for adding a hook callback.
- // define the jetpack_sync_current_theme_support callback
- function action_jetpack_sync_current_theme_support( $callable ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'jetpack_sync_current_theme_support', 'action_jetpack_sync_current_theme_support', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'jetpack_sync_current_theme_support', 'action_jetpack_sync_current_theme_support', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /sync/class.jetpack-sync-module-themes.php
- add_action( 'jetpack_sync_current_theme_support', $callable );
- do_action( 'jetpack_sync_current_theme_support' , $this->get_theme_support_info() );