storefront/sidebar.php

16 lines
278 B
PHP
Raw Permalink Normal View History

2014-08-17 16:55:38 +01:00
<?php
/**
* The sidebar containing the main widget area.
*
* @package storefront
*/
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
return;
}
?>
<div id="secondary" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
2016-02-19 16:57:56 +00:00
</div><!-- #secondary -->