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:
parent
84c56e062e
commit
b1c90ff067
|
@ -850,6 +850,23 @@ function is_dynamic_sidebar() {
|
||||||
return false;
|
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 */
|
/* Internal Functions */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue