1
2
3
4
5
6
7
8
9
10
11
12
|
<?php /** * The Sidebar containing the main widget area. * * @package Minileven */ ?> <?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?> <div id="secondary" class="widget-area" role="complementary"> <?php dynamic_sidebar( 'sidebar-1' ); ?> </div><!-- #secondary .widget-area --> <?php endif; ?>
|