-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
33 lines (30 loc) · 682 Bytes
/
Copy pathfooter.php
File metadata and controls
33 lines (30 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* The footer template
*
* @package WM_Base_Theme
*/
?>
<footer id="colophon" class="site-footer">
<div class="container">
<?php
wp_nav_menu(array(
'theme_location' => 'footer',
'menu_id' => 'footer-menu',
'container' => false,
));
?>
<p class="site-info">
© <?php echo date('Y'); ?> <?php bloginfo('name'); ?>. All rights reserved.
</p>
<?php
// Footer logo treatment - "Brought to you by" with Working Model logo
wm_footer_logo();
?>
</div>
</footer>
</div><!-- .main-content-wrapper -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>