customize_render_panel WordPress Action Hook
The customize_render_panel hook is used to customize how a particular panel is rendered in the Customizer. It can be used to change the panel's container, title, description, or any other aspect of its appearance.
do_action( 'customize_render_panel', WP_Customize_Panel $panel ) #
Fires before rendering a Customizer panel.
Parameters
- $panel
(WP_Customize_Panel)WP_Customize_Panel instance.
Source
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |