14 lines
276 B
PHP
14 lines
276 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The Sidebar containing the main widget areas.
|
||
|
*
|
||
|
* @package Sketch
|
||
|
*/
|
||
|
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
|
||
|
return;
|
||
|
}
|
||
|
?>
|
||
|
<div id="secondary" class="widget-area" role="complementary">
|
||
|
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
||
|
</div><!-- #secondary -->
|