themes-wordpress/seedlet/footer.php

28 lines
627 B
PHP
Raw Normal View History

2024-07-08 08:47:14 +00:00
<?php declare( strict_types = 1 ); ?>
2020-06-10 16:58:55 +00:00
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Seedlet
2020-06-10 16:58:55 +00:00
* @since 1.0.0
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer default-max-width" role="contentinfo" aria-label="<?php esc_attr_e( 'Footer', 'seedlet' ); ?>">
2021-01-08 16:42:41 +00:00
<?php get_template_part( 'template-parts/footer/footer-content' ); ?>
2020-06-10 16:58:55 +00:00
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>