portage/sidebar.php

16 lines
275 B
PHP
Raw Normal View History

2021-08-01 17:32:46 +00:00
<?php
/**
* The sidebar containing the main widget area.
*
2021-08-01 17:58:18 +00:00
* @package Portage
2021-08-01 17:32:46 +00:00
*/
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
return;
}
?>
<div id="sidebar" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
2021-08-01 17:58:18 +00:00
</div><!-- end #sidebar -->