Bring back old behavior for sidebar ID's. Props filosofo. see #4169
git-svn-id: https://develop.svn.wordpress.org/trunk@5348 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
238e8f18ec
commit
fdc3ca298c
|
@ -44,7 +44,6 @@ function register_sidebar($args = array()) {
|
||||||
|
|
||||||
$defaults = array(
|
$defaults = array(
|
||||||
'name' => sprintf(__('Sidebar %d'), count($wp_registered_sidebars) + 1 ),
|
'name' => sprintf(__('Sidebar %d'), count($wp_registered_sidebars) + 1 ),
|
||||||
'id' => "sidebar-$i",
|
|
||||||
'before_widget' => '<li id="%1$s" class="widget %2$s">',
|
'before_widget' => '<li id="%1$s" class="widget %2$s">',
|
||||||
'after_widget' => "</li>\n",
|
'after_widget' => "</li>\n",
|
||||||
'before_title' => '<h2 class="widgettitle">',
|
'before_title' => '<h2 class="widgettitle">',
|
||||||
|
@ -53,6 +52,7 @@ function register_sidebar($args = array()) {
|
||||||
|
|
||||||
$sidebar = array_merge($defaults, $args);
|
$sidebar = array_merge($defaults, $args);
|
||||||
|
|
||||||
|
if ( ! isset($sidebar['id']) ) $sidebar['id'] = sanitize_title($sidebar['name']);
|
||||||
$wp_registered_sidebars[$sidebar['id']] = $sidebar;
|
$wp_registered_sidebars[$sidebar['id']] = $sidebar;
|
||||||
|
|
||||||
return $sidebar['id'];
|
return $sidebar['id'];
|
||||||
|
|
Loading…
Reference in New Issue