portage/sidebar.php
2021-08-01 13:58:18 -04:00

16 lines
275 B
PHP
Executable File

<?php
/**
* The sidebar containing the main widget area.
*
* @package Portage
*/
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
return;
}
?>
<div id="sidebar" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div><!-- end #sidebar -->