sidebar.php 278 B

123456789101112
  1. <?php
  2. /**
  3. * The sidebar containing the main widget area.
  4. *
  5. * @package Pique
  6. */
  7. if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
  8. <div id="secondary" class="widget-area" role="complementary">
  9. <?php dynamic_sidebar( 'sidebar-1' ); ?>
  10. </div><!-- #secondary -->
  11. <?php endif; ?>