customize_render_control WordPress Action Hook
The customize_render_control hook is used to filter the output of a Customizer control before it is rendered. This hook can be used to add or remove control content, modify the control wrapper tag, or change the order in which controls are rendered.
do_action( 'customize_render_control', WP_Customize_Control $control ) #
Fires just before the current Customizer control is rendered.
Parameters
- $control
(WP_Customize_Control)WP_Customize_Control instance.
Source
Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |