Files
old-experiments/backend/wordpress/wp-content/themes/storefront/sidebar.php
2018-06-20 18:28:39 +02:00

16 lines
278 B
PHP

<?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' ); ?>
</div><!-- #secondary -->