sidebar.php 505 B

1234567891011121314151617181920
  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 WordPress
  8. * @subpackage Twenty_Seventeen
  9. * @since 1.0
  10. * @version 1.0
  11. */
  12. if ( ! is_active_sidebar( 'sidebar-1' ) ) {
  13. return;
  14. }
  15. ?>
  16. <aside id="secondary" class="widget-area" role="complementary" aria-label="<?php esc_attr_e( 'Blog Sidebar', 'twentyseventeen' ); ?>">
  17. <?php dynamic_sidebar( 'sidebar-1' ); ?>
  18. </aside><!-- #secondary -->