Return empty array in wp_get_sidebars_widgets() if no sidebars are defined. fixes #14876.
git-svn-id: https://develop.svn.wordpress.org/trunk@15994 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ad18a5dc4b
commit
bcbb15ca21
@ -995,6 +995,9 @@ function wp_get_sidebars_widgets($deprecated = true) {
|
||||
if ( $deprecated !== true )
|
||||
_deprecated_argument( __FUNCTION__, '2.8.1' );
|
||||
|
||||
if ( ! current_theme_supports( 'widgets' ) )
|
||||
return array();
|
||||
|
||||
global $wp_registered_widgets, $wp_registered_sidebars, $_wp_sidebars_widgets;
|
||||
|
||||
// If loading from front page, consult $_wp_sidebars_widgets rather than options
|
||||
|
Loading…
Reference in New Issue
Block a user