-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
83 lines (77 loc) · 3 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?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 Vicem
*/
?>
</div>
</div>
<!-- #content -->
<?php if( is_active_sidebar('sidebar-3') ) { ?>
<div class="footer-widget">
<div class="wrap">
<div class="footer-widget-left">
<?php dynamic_sidebar('sidebar-3') ?>
</div>
</div>
</div>
<?php } ?>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<div class="wrap">
<div class="row-site-info">
<?php echo '© '.date("Y"); ?>
<span class="sep"> | </span>
<?php printf( esc_html__( 'Vicem WordPress Theme ','vicem')); ?>
<span class="sep"> | </span>
<?php
printf( esc_html__( 'By Monika Rao', 'vicem' ));
?>
</div>
<div class="footer-right">
<ul class="alignleft">
<?php if( get_theme_mod('Facebook') ) : ?>
<li class="social-facebook"><a href="<?php echo get_theme_mod('Facebook') ?>"><i class="fa fa-facebook"></i></a>
<?php endif; ?>
</li>
<?php if( get_theme_mod('Google_plus') ) : ?>
<li class="social-gplus"><a href="<?php echo get_theme_mod('Google_plus') ?>"><i class="fa fa-google-plus"></i></a>
<?php endif; ?>
</li>
<?php if( get_theme_mod('Twitter') ) : ?>
<li class="social-twitter"><a href="<?php echo get_theme_mod('Twitter') ?>"><i class="fa fa-twitter"></i></a>
<?php endif; ?>
</li>
<?php if( get_theme_mod('Youtube') ) : ?>
<li class="social-youtube"><a href="<?php echo get_theme_mod('Youtube') ?>"><i class="fa fa-youtube"></i></a>
<?php endif; ?>
</li>
<?php if( get_theme_mod('Linkedin') ) : ?>
<li class="social-linkedin"><a href="<?php echo get_theme_mod('Linkedin') ?>"><i class="fa fa-linkedin"></i></a>
<?php endif; ?>
</li>
<?php if( get_theme_mod('Pinterest') ) : ?>
<li class="social-pinterest"><a href="<?php echo get_theme_mod('Pinterest') ?>"><i class="fa fa-pinterest"></i></a>
<?php endif; ?>
</li>
<?php if( get_theme_mod('Instagram') ) : ?>
<li class="social-instagram"><a href="<?php echo get_theme_mod('Instagram') ?>"><i class="fa fa-instagram"></i></a>
<?php endif; ?>
</li>
</ul>
</div>
</div>
</div>
<!-- .site-info -->
</footer>
<!-- #colophon -->
</div>
<!-- #page -->
<?php wp_footer(); ?>
</body>
</html>