sidebar.php 379 B

1234567891011121314
  1. <?php
  2. /**
  3. * The sidebar containing the main widget area.
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  6. *
  7. * @package Scratchpad
  8. */
  9. if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
  10. <aside id="secondary" class="widget-area" role="complementary">
  11. <?php dynamic_sidebar( 'sidebar-1' ); ?>
  12. </aside><!-- #secondary -->
  13. <?php endif; ?>