footer.php 485 B

1234567891011121314151617181920212223242526
  1. <?php declare( strict_types = 1 ); ?>
  2. <?php
  3. /**
  4. * The template for displaying the footer
  5. *
  6. * Contains the closing of the #content div and all content after.
  7. *
  8. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  9. *
  10. * @package WordPress
  11. * @subpackage Varia
  12. * @since 1.0.0
  13. */
  14. ?>
  15. </div><!-- #content -->
  16. <?php get_template_part( 'template-parts/footer/footer', 'content' ); ?>
  17. </div><!-- #page -->
  18. <?php wp_footer(); ?>
  19. </body>
  20. </html>