footer.php 621 B

1234567891011121314151617181920212223242526272829
  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 Lodestar
  10. */
  11. ?>
  12. </div>
  13. <?php get_template_part( 'components/footer/footer', 'image' ); ?>
  14. <footer id="colophon" class="site-footer" role="contentinfo">
  15. <?php
  16. lodestar_social_menu();
  17. get_template_part( 'components/footer/footer', 'widgets' );
  18. get_template_part( 'components/footer/site', 'info' );
  19. ?>
  20. </footer>
  21. </div><!-- #page -->
  22. <?php wp_footer(); ?>
  23. </body>
  24. </html>