Sarathlal N

Check if WordPress sidebar have active widgets

In almost WordPress themes, they have sidebars on pages. In one of the recent WordPress customization, I want to hide side bar section if there aren’t any active widgets on it.

In WordPress, we have a function, wp_get_sidebars_widgets() to get all active widgets. We can use this function with in a custom function and by the way we can check that there is any active widget on particular widget area.

Just use below code snippet in our theme’s or child them’s functions.php file.

function is_sidebar_active($index) {
	global $wp_registered_sidebars;
	$widgetcolums = wp_get_sidebars_widgets();
	if ($widgetcolums[$index])
		return true;
	return false;
}

The below code snippet can checks if a sidebar (widget area) has any active widget on it. So use below code snippet in our page template that have sidebars.

if( is_sidebar_active( 'sidebar-name' ) ):
// Our sidebar comes here
endif;

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.