Hello, there was a problem with displaying widgets, registered in a template like this, on the site itself displays only 8 widgets, and they are registered and filled in the admin panel 12 .. 6 on the left and 6 on the right, what could be the problem? Tell me please
if ( function_exists('register_sidebar') ) { $args = array( 'name' => '%d-лево', 'before_widget' => '<div class="sb-bot"><div class="sb-top"> <div class="sb-right"><div class="sb-left"><div class="sb-rb"><div class="sb-lb"><div class="sb-rt"><div class="sb-lt">', 'before_title' => '<h2>', 'after_title' => '</h2>', 'after_widget' => '</div></div></div></div></div></div></div></div>' ); register_sidebars( 6, $args ); } if ( function_exists('register_sidebar') ) { $args = array( 'name' => '%d-право', 'before_widget' => '</div><div id="sidebar-right"><div class="sb-bot"><div class="sb-top"> <div class="sb-right"><div class="sb-left"><div class="sb-rb"><div class="sb-lb"><div class="sb-rt"><div class="sb-lt">', 'before_title' => '<h2>', 'after_title' => '</h2>', 'after_widget' => '</div></div></div></div></div></div></div></div>' ); register_sidebars( 6, $args ); }