-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
56 lines (49 loc) · 1.8 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Roundhouse
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer">
<div class="site-footer__wrapper">
<?php
if ( has_nav_menu( 'utilities' ) ) :
wp_nav_menu(
[
'container_class' => 'site-footer__utilities-menu footer-utilities',
'menu_class' => 'footer-utilities__menu',
'menu_id' => 'footer-utilities__menu',
'theme_location' => 'utilities',
]
);
endif;
?>
<div class="site-info site-info__copyright copyright">
<span class="copyright__year">© <?php echo esc_html( date( 'Y' ) ); ?></span>
<span class="copyright__author">
<a href="<?php echo esc_html( home_url() ); ?>"><?php echo esc_html( get_bloginfo( 'name' ) ); ?></a>
</span>
<span class="copyright__notice">
<?php esc_html_e( 'All rights reserved.', 'roundhouse' ); ?>
</span>
</div><!-- .site-info.copyright -->
<div class="site-info site-info__terms-privacy terms-privacy">
<?php if ( pvd_get_page( 'sample-page-2' ) ) : ?>
<span class="site-info__terms"><a href="<?php echo esc_url( pvd_get_page( 'sample-page-2' ) ); ?>"><?php esc_html_e( 'Terms of Use', 'roundhouse' ); ?></a></span>
<?php endif; ?>
<?php if ( get_privacy_policy_url() ) : ?>
<span class="site-info__privacy"><a href="<?php echo esc_url( get_privacy_policy_url() ); ?>"><?php esc_html_e( 'Privacy Policy', 'roundhouse' ); ?></a></span>
<?php endif; ?>
</div><!-- .site-info.terms-privacy -->
</div><!-- .site-footer__wrapper -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>