themes-wordpress/varia/footer.php

27 lines
485 B
PHP
Raw Permalink Normal View History

2024-07-04 09:17:35 +00:00
<?php declare( strict_types = 1 ); ?>
<?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 WordPress
* @subpackage Varia
* @since 1.0.0
*/
?>
</div><!-- #content -->
<?php get_template_part( 'template-parts/footer/footer', 'content' ); ?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>