-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
123 lines (116 loc) · 6.77 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<footer class="footer-bg" data-background="assets/img/bg/footer-bg.png">
<div class="footer-top pt-140 pb-60">
<div class="container">
<div class="row">
<div class="col-xl-4">
<div class="footer-widget mb-40">
<div class="footer-logo mb-30">
<a href="index.html">
<img src="<?php global $xisen_options; echo $xisen_options['footer_first_widget_logo']['url']; ?>" alt="">
</a>
</div>
<div class="footer-text">
<p>
<?php echo get_xisen_redux_data('footer_first_widget_short_desc'); ?>
</p>
</div>
<div class="footer-social">
<?php if(get_xisen_redux_data('xisen_facebook')) : ?>
<a href="<?php echo get_xisen_redux_data('xisen_facebook'); ?>" data-target="_blank" data-toggle="tooltip" title="Facebook"><i class="fab fa-facebook-square"></i></a>
<?php endif; ?>
<?php if(get_xisen_redux_data('xisen_linkedin')) : ?>
<a href="<?php echo get_xisen_redux_data('xisen_linkedin'); ?>" data-target="_blank" data-toggle="tooltip" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
<?php endif; ?>
<?php if(get_xisen_redux_data('xisen_twitter')) : ?>
<a href="<?php echo get_xisen_redux_data('xisen_twitter'); ?>" data-target="_blank" data-toggle="tooltip" title="Twitter"><i class="fab fa-twitter-square"></i></a>
<?php endif; ?>
<?php if(get_xisen_redux_data('xisen_pinterest')) : ?>
<a href="<?php echo get_xisen_redux_data('xisen_pinterest'); ?>" data-target="_blank" data-toggle="tooltip" title="Pinterest"><i class="fab fa-pinterest-square"></i></a>
<?php endif; ?>
<?php if(get_xisen_redux_data('xisen_instagram')) : ?>
<a href="<?php echo get_xisen_redux_data('xisen_instagram'); ?>" data-target="_blank" data-toggle="tooltip" title="Instagram"><i class="fab fa-instagram-square"></i></a>
<?php endif; ?>
<?php if(get_xisen_redux_data('xisen_youtube')) : ?>
<a href="<?php echo get_xisen_redux_data('xisen_youtube'); ?>" data-target="_blank" data-toggle="tooltip" title="Youtube"><i class="fab fa-youtube"></i></a>
<?php endif; ?>
</div>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-6">
<div class="footer-widget mb-40">
<h3><?php echo get_xisen_redux_data('footer_second_widget_title'); ?></h3>
<?php
wp_nav_menu(array(
'theme_location' => 'footer_second_menu',
'menu_class' => 'footer-links',
'container' => 'ul'
));
?>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-6">
<div class="footer-widget mb-40">
<h3><?php echo get_xisen_redux_data('footer_third_widget_title'); ?></h3>
<?php
wp_nav_menu(array(
'theme_location' => 'footer_third_menu',
'menu_class' => 'footer-links',
'container' => 'ul'
));
?>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-6">
<div class="footer-widget mb-40">
<h3><?php echo get_xisen_redux_data('footer_fourth_widget_title'); ?></h3>
<?php
wp_nav_menu(array(
'theme_location' => 'footer_fourth_menu',
'menu_class' => 'footer-links',
'container' => 'ul'
));
?>
</div>
</div>
<div class="col-xl-2 col-lg-3 col-md-6">
<div class="footer-widget mb-40">
<h3><?php echo get_xisen_redux_data('footer_fifth_widget_title'); ?></h3>
<?php
wp_nav_menu(array(
'theme_location' => 'footer_last_menu',
'menu_class' => 'footer-links',
'container' => 'ul'
));
?>
</div>
</div>
</div>
</div>
</div>
<div class="copyright-area">
<div class="container">
<div class="copyright-border">
<div class="row">
<div class="col-md-6">
<div class="copyright-text">
<span><?php echo get_xisen_redux_data('footer_copyright'); ?></span>
</div>
</div>
<div class="col-md-6">
<div class="footer-menu text-left text-md-right">
<?php
wp_nav_menu(array(
'theme_location' => 'footer_menu',
'container' => 'ul'
));
?>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>