-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
23 lines (23 loc) · 689 Bytes
/
Copy pathfooter.php
File metadata and controls
23 lines (23 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<footer class="site-footer">
<div class="container">
<?php
if (has_nav_menu('footer')) {
wp_nav_menu(
array(
'theme_location' => 'footer',
'menu_class' => 'footer-menu',
'container' => false,
)
);
}
?>
<div class="site-info">
<p>© <?php echo date('Y'); ?> <?php bloginfo('name'); ?>. All rights reserved.</p>
</div>
</div>
</footer>
<?php get_template_part('template-parts/footer-options'); ?>
<?php get_template_part('template-parts/social-links'); ?>
<?php wp_footer(); ?>
</body>
</html>