layers_customizer_controls_modify
The Layers layers customizer controls modify hook.
Description
do_action( 'layers_customizer_controls_modify' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'layers_customizer_controls_modify' );
- The following example is for adding a hook callback.
- // define the layers_customizer_controls_modify callback
- function action_layers_customizer_controls_modify( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'layers_customizer_controls_modify', 'action_layers_customizer_controls_modify', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'layers_customizer_controls_modify', 'action_layers_customizer_controls_modify', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /core/customizer/config.php
- do_action( 'layers_customizer_controls_modify' );