WP_Customize_Widgets::is_panel_active()publicWP 4.4.0

Determines whether the widgets panel is active, based on whether there are sidebars registered.

Method of the class: WP_Customize_Widgets{}

No Hooks.

Return

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() code WP 6.5.2

public function is_panel_active() {
	global $wp_registered_sidebars;
	return ! empty( $wp_registered_sidebars );
}