sidebar.php 276 B

12345678910111213
  1. <?php
  2. /**
  3. * The Sidebar containing the main widget areas.
  4. *
  5. * @package Sketch
  6. */
  7. if ( ! is_active_sidebar( 'sidebar-1' ) ) {
  8. return;
  9. }
  10. ?>
  11. <div id="secondary" class="widget-area" role="complementary">
  12. <?php dynamic_sidebar( 'sidebar-1' ); ?>
  13. </div><!-- #secondary -->