-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
58 lines (44 loc) · 1.94 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
57
58
s<!-- Copyright Section Start -->
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-3 col-xs-12">
<div class="footer-logo">
<img src="<?php echo esc_attr(get_theme_mod('footer_logo'));?>" alt="">
</div>
</div>
<div class="col-lg-4 col-md-4 col-xs-12">
<div class="social-icon text-center">
<?php if (get_theme_mod('footer_social_facebook')) :?>
<a class="facebook" href="<?php echo esc_url(get_theme_mod('footer_social_facebook')); ?>"><i class="lni-facebook-filled"></i></a>
<?php endif; ?>
<?php if (get_theme_mod('footer_social_twitter')) :?>
<a class="twitter" href="<?php echo esc_url(get_theme_mod('footer_social_twitter')); ?>"><i class="lni-twitter-filled"></i></a>
<?php endif; ?>
<?php if (get_theme_mod('footer_social_instagram')) :?>
<a class="instagram" href="<?php echo esc_url(get_theme_mod('footer_social_instagram')); ?>"><i class="lni-instagram-filled"></i></a>
<?php endif; ?>
<?php if (get_theme_mod('footer_social_linkedin')) :?>
<a class="linkedin" href="<?php echo esc_url(get_theme_mod('footer_social_linkedin')); ?>"><i class="lni-linkedin-filled"></i></a>
<?php endif; ?>
</div>
</div>
<div class="col-lg-4 col-md-5 col-xs-12">
<?php echo get_theme_mod('footer_credit'); ?>
</div>
</div>
</div>
</div>
<!-- Copyright Section End -->
<!-- Go to Top Link -->
<a href="#" class="back-to-top">
<i class="lni-arrow-up"></i>
</a>
<!-- Preloader -->
<div id="preloader">
<div class="loader" id="loader-1"></div>
</div>
<!-- End Preloader -->
<?php wp_footer();?>
</body>
</html>