forked from ColorlibHQ/unapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·36 lines (31 loc) · 895 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
36
<footer id="colorlib-footer">
<div class="container">
<div class="row row-pb-md">
<?php get_sidebar( 'footer' ); ?>
</div>
</div>
</footer>
<?php if( get_theme_mod( 'unapp_enable_footer_copyright', 'true' ) ) { ?>
<div class="copy">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<p>
<?php
echo wp_kses_post( get_theme_mod( 'unapp_copyright_contents', 'Copyright 2018 All rights reserved' ) );
?>
</p>
</div>
</div>
</div>
</div>
<?php } ?>
</div><!-- end #page -->
<?php if( get_theme_mod( 'unapp_enable_go_top', true ) ) { ?>
<div class="gototop js-top">
<a href="#" class="js-gotop"><i class="icon-arrow-up2"></i></a>
</div>
<?php } ?>
<?php wp_footer(); ?>
</body>
</html>