W3cubDocs

/WordPress

is_registered_sidebar( string|int $sidebar_id )

Checks if a sidebar is registered.

Parameters

$sidebar_id

(string|int) (Required) The ID of the sidebar when it was registered.

Return

(bool) True if the sidebar is registered, false otherwise.

Source

File: wp-includes/widgets.php

function is_registered_sidebar( $sidebar_id ) {
	global $wp_registered_sidebars;

	return isset( $wp_registered_sidebars[ $sidebar_id ] );
}

Changelog

Version Description
4.4.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/is_registered_sidebar