-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
35 lines (27 loc) · 936 Bytes
/
footer.php
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
33
34
35
<?php
// =====================================================================
// FOOTER
// =====================================================================
// The standard WordPress footer.
// =====================================================================
?>
<?php
// Begin .footer element if has Navigation. attribution or Copyright Info
if( has_nav_menu('footer_menu') || get_theme_mod('theme_copyright_info') ):
?>
<div class="footer">
<?php
// Footer Navigation
if( has_nav_menu('footer_menu') )
wp_nav_menu('menu_id=header_navigation&container=&menu_class=footer-menu&theme_location=footer_menu&depth=1');
// Footer Copyright Info
if( get_theme_mod('theme_copyright_info') )
echo '<div class="footer-copyright_info">' . get_theme_mod( 'theme_copyright_info' ) . '</div>';
?>
</div>
<?php
// End .footer element
endif;
?>
</body>
<?php wp_footer();?>