jetpack_custom_css_customizer_controls
An action to grab on to if another Jetpack Module would like to add its own controls.
Description
do_action( 'jetpack_custom_css_customizer_controls', $wp_customize );
Parameters (1)
- 0. $wp_customize
- The WP_Customize object.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'jetpack_custom_css_customizer_controls', $wp_customize );
- The following example is for adding a hook callback.
- // define the jetpack_custom_css_customizer_controls callback
- function action_jetpack_custom_css_customizer_controls( $wp_customize ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'jetpack_custom_css_customizer_controls', 'action_jetpack_custom_css_customizer_controls', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'jetpack_custom_css_customizer_controls', 'action_jetpack_custom_css_customizer_controls', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /modules/custom-css/custom-css-4.7.php
- do_action( 'jetpack_custom_css_customizer_controls', $wp_customize );
- /modules/minileven/minileven.php
- add_action( 'jetpack_custom_css_customizer_controls', 'jetpack_mobile_customizer_controls' );