customize_render_section
Fires before rendering a Customizer section.
Description
Parameters (1)
- 0. $instance (WP_Customize_Section)
-
WP_Customize_Section
instance.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'customize_render_section', $instance );
- The following example is for adding a hook callback.
- // define the customize_render_section callback
- function action_customize_render_section( $instance ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'customize_render_section', 'action_customize_render_section', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'customize_render_section', 'action_customize_render_section', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-customize-section.php
- do_action( 'customize_render_section', $this );