footer.php 719 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * The template for displaying the footer.
  4. *
  5. * Contains the closing of the #content div and all content after.
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package Karuna
  10. */
  11. ?>
  12. <?php if ( is_active_sidebar( 'sidebar-5' ) ) : ?>
  13. <div class="full-width-widget-area widget-area">
  14. <?php dynamic_sidebar( 'sidebar-5' ); ?>
  15. </div>
  16. <?php endif; ?>
  17. </div><!-- #content -->
  18. <footer id="colophon" class="site-footer" role="contentinfo">
  19. <?php get_template_part( 'components/footer/footer', 'widgets' ); ?>
  20. <?php get_template_part( 'components/footer/site', 'info' ); ?>
  21. </footer>
  22. </div><!-- #page -->
  23. <?php wp_footer(); ?>
  24. </body>
  25. </html>