sidebar-footer.php 402 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * The sidebar containing the footer widget area.
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  6. *
  7. * @package TextBook
  8. */
  9. if ( ! is_active_sidebar( 'sidebar-2' ) ) {
  10. return;
  11. }
  12. ?>
  13. <div class="footer-widget-area">
  14. <aside id="footer-widgets" class="widget-area" role="complementary">
  15. <?php dynamic_sidebar( 'sidebar-2' ); ?>
  16. </aside>
  17. </div>