2015-09-24 08:01:05 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The sidebar containing the main widget area.
|
|
|
|
*
|
|
|
|
* @package view_source
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
|
2015-09-24 21:10:21 +03:00
|
|
|
return;
|
2015-09-24 08:01:05 +03:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="secondary" class="widget-area" role="complementary">
|
2015-09-24 21:10:21 +03:00
|
|
|
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
2015-09-24 08:01:05 +03:00
|
|
|
</div><!-- #secondary -->
|