customize_render_section_(id) action-hookWP 3.4.0

Fires before rendering a specific Customizer section.

The dynamic portion of the hook name, $this->id, refers to the ID of the specific Customizer section to be rendered.

Usage

add_action( 'customize_render_section_(id)', 'wp_kama_customize_render_section_id_action' );

/**
 * Function for `customize_render_section_(id)` action-hook.
 * 
 * @return void
 */
function wp_kama_customize_render_section_id_action(){

	// action...
}

Changelog

Since 3.4.0 Introduced.

Where the hook is called

WP_Customize_Section::maybe_render()
customize_render_section_(id)
wp-includes/class-wp-customize-section.php 313
do_action( "customize_render_section_{$this->id}" );

Where the hook is used in WordPress

Usage not found.