mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-14 19:08:12 +08:00
23 lines
358 B
PHP
23 lines
358 B
PHP
|
<?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 Twenty_Twenty_One
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
|
||
|
?>
|
||
|
</div><!-- #app -->
|
||
|
|
||
|
<?php wp_footer(); ?>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|