customize_render_panel_(id) action-hook . WP 4.0.0
Fires before rendering a specific Customizer panel.
The dynamic portion of the hook name, $this->id, refers to the ID of the specific Customizer panel to be rendered.
Usage
add_action( 'customize_render_panel_(id)', 'action_function_name_5426' ); function action_function_name_5426(){ // action... }
Changelog
Since 4.0.0 | Introduced. |
Where the hook is called
customize_render_panel_(id)
wp-includes/class-wp-customize-panel.php 290
do_action( "customize_render_panel_{$this->id}" );