Files
C1024_2026/footer.php
T

22 lines
449 B
PHP

<footer class="site-footer">
<div class="footer-inner">
<span>© <?php echo esc_html( wp_date( 'Y' ) ); ?> <?php bloginfo( 'name' ); ?></span>
<?php
wp_nav_menu(
array(
'theme_location' => 'footer',
'menu_class' => 'footer-menu',
'container' => false,
'fallback_cb' => false,
)
);
?>
</div>
</footer>
<?php
// Required hook for enqueued footer scripts and plugin output.
wp_footer();
?>
</body>
</html>