Opened 14 months ago

#20360 new defect (bug)

New Sidebar Takes Over Previous Sidebar Widgets

Reported by: imikedesigns Owned by:
Priority: normal Milestone: Awaiting Review
Component: General Version: 3.3.1
Severity: normal Keywords:
Cc:

Description

When creating a new sidebar in a theme already utilizing a sidebar, the new sidebar takes on the widgets of the sidebar previously occupying that place of order. For example, a theme currently has these sidebars, with widgets in use:

Sidebar
Footer

Adding a new sidebar in a array:

$sidebars = array('Home Page Sidebar','Sidebar','Footer');

foreach ($sidebars as $sidebar) {

  register_sidebar(array('name'=> $sidebar,

    'before_widget' => '<article id="%1$s" class="widget %2$s"><div class="container">',

    'after_widget' => '</div></article>',

    'before_title' => '<h3>',

    'after_title' => '</h3>'

  ));

}

Home Page Sidebar takes the widgets of the Sidebar when it takes in place in line.

Change History (0)

Note: See TracTickets for help on using tickets.