Add is_active_sidebar(), props filosofo, fixes #4594

git-svn-id: https://develop.svn.wordpress.org/trunk@11134 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-04-30 04:26:34 +00:00
parent 84c56e062e
commit b1c90ff067
1 changed files with 17 additions and 0 deletions

View File

@ -850,6 +850,23 @@ function is_dynamic_sidebar() {
return false;
}
/**
* Whether a sidebar is in use.
*
* @since 2.8
*
* @param mixed $index, sidebar name, id or number to check.
* @return bool true if the sidebar is in use, false otherwise.
*/
function is_active_sidebar( $index ) {
$index = ( is_int($index) ) ? "sidebar-$index" : sanitize_title($index);
$sidebars_widgets = get_option( 'sidebars_widgets', array() );
if ( isset($sidebars_widgets[$index]) && !empty($sidebars_widgets[$index]) )
return true;
return false;
}
/* Internal Functions */
/**