footer-widgets.php 428 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Displays the footer widget area
  4. *
  5. * @package WordPress
  6. * @subpackage Varia
  7. * @since 1.0.0
  8. */
  9. if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
  10. <aside class="widget-area responsive-max-width" role="complementary" aria-label="<?php esc_attr_e( 'Footer', 'varia' ); ?>">
  11. <?php
  12. if ( is_active_sidebar( 'sidebar-1' ) ) {
  13. dynamic_sidebar( 'sidebar-1' );
  14. }
  15. ?>
  16. </aside><!-- .widget-area -->
  17. <?php endif; ?>