WP_Customize_Widgets::is_panel_active
Determines whether the widgets panel is active, based on whether there are sidebars registered.
Method of the class: WP_Customize_Widgets{}
No Hooks.
Returns
true|false. Active.
Usage
$WP_Customize_Widgets = new WP_Customize_Widgets(); $WP_Customize_Widgets->is_panel_active();
Notes
- See: WP_Customize_Panel::$active_callback
- Global. Array.
$wp_registered_sidebars
Changelog
| Since 4.4.0 | Introduced. |
WP_Customize_Widgets::is_panel_active() WP Customize Widgets::is panel active code WP 6.9.1
public function is_panel_active() {
global $wp_registered_sidebars;
return ! empty( $wp_registered_sidebars );
}