jeremy-wordpress-theme/footer.php

27 lines
610 B
PHP
Raw Normal View History

2018-07-25 19:49:58 +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 jeremy-wordpress-theme
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer">
<div class="site-info">
2018-07-27 19:35:08 +00:00
<span class="site-copyright">&#169; <?php echo get_theme_mod( 'copyright_holder' );?> <?php echo date('Y');?></span>
2018-07-27 14:34:24 +00:00
</div><!-- .site-info -->
2018-07-25 19:49:58 +00:00
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>