achille-press/sidebar.php
sixhours d01a8d319b is_active_sidebar() check
Check to ensure sidebar is active before displaying #secondary
2014-06-26 11:06:33 -04:00

13 lines
271 B
PHP

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