Use wp_parse_args in register_sidebar. fixes #11836, props scribu.
git-svn-id: https://develop.svn.wordpress.org/trunk@14154 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ac368dbd77
commit
7369d04015
@ -534,8 +534,6 @@ function register_sidebars($number = 1, $args = array()) {
|
||||
*
|
||||
* @since 2.2.0
|
||||
* @uses $wp_registered_sidebars Stores the new sidebar in this array by sidebar ID.
|
||||
* @uses parse_str() Converts a string to an array to be used in the rest of the function.
|
||||
* @usedby register_sidebars()
|
||||
*
|
||||
* @param string|array $args Builds Sidebar based off of 'name' and 'id' values
|
||||
* @return string The sidebar id that was added.
|
||||
@ -543,9 +541,6 @@ function register_sidebars($number = 1, $args = array()) {
|
||||
function register_sidebar($args = array()) {
|
||||
global $wp_registered_sidebars;
|
||||
|
||||
if ( is_string($args) )
|
||||
parse_str($args, $args);
|
||||
|
||||
$i = count($wp_registered_sidebars) + 1;
|
||||
|
||||
$defaults = array(
|
||||
@ -558,7 +553,7 @@ function register_sidebar($args = array()) {
|
||||
'after_title' => "</h2>\n",
|
||||
);
|
||||
|
||||
$sidebar = array_merge($defaults, (array) $args);
|
||||
$sidebar = wp_parse_args( $args, $defaults );
|
||||
|
||||
$wp_registered_sidebars[$sidebar['id']] = $sidebar;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user