Files
yuzu-child/footer-without-widgets.php
2020-04-21 13:42:20 +02:00

31 lines
643 B
PHP

<?php
/*
Template Name: Footer Without Widgets
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer">
<div class="copyright-area">
<p>
<?php
$default_copyright_text = ' &copy; '.get_bloginfo('name').' '.date('Y');
echo get_theme_mod('copyright_text', $default_copyright_text );
?>
</p>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php if(get_theme_mod('enable_scroll_back_to_top_btn', true)) { ?>
<div class="scroll-back-to-top-btn">
<?php get_template_part('assets/icons/inline', 'arrow_up.svg'); ?>
</div>
<?php } ?>
<?php wp_footer(); ?>
</body>
</html>