This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2014-06-26 20:45:05 +00:00
|
|
|
* The sidebar containing the main widget area.
|
2012-01-07 03:25:13 +00:00
|
|
|
*
|
2015-07-01 15:21:44 +00:00
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
|
|
*
|
2012-01-07 03:25:13 +00:00
|
|
|
* @package _s
|
|
|
|
*/
|
2014-06-26 15:06:33 +00:00
|
|
|
|
2014-06-26 20:45:05 +00:00
|
|
|
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
|
2014-06-26 15:06:33 +00:00
|
|
|
return;
|
2014-06-26 20:45:05 +00:00
|
|
|
}
|
2012-01-07 03:25:13 +00:00
|
|
|
?>
|
2014-06-26 20:45:05 +00:00
|
|
|
|
|
|
|
<div id="secondary" class="widget-area" role="complementary">
|
|
|
|
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
|
|
|
</div><!-- #secondary -->
|