-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
63 lines (55 loc) · 1.66 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
<?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 exploore
*/
?>
</div>
<footer id="footer">
<div class="site-footer">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="footer-sidebar-1 footer-widget">
<?php if(dynamic_sidebar('footer-sidebar-1')); ?>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="footer-sidebar-2 col-xs-12 footer-widget">
<?php if(dynamic_sidebar('footer-sidebar-2')); ?>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="footer-sidebar-3 footer-widget">
<?php if(dynamic_sidebar('footer-sidebar-3')); ?>
</div>
</div>
</div>
</div>
</div>
<div class="copyright-info copyright text-center">
<div class="container">
<div class="row">
<p class="exploore-copy-right">
<span class="copyright-text">
<?php
echo esc_html(get_theme_mod('exploore_copyright', 'Copyright @ 2019. All right reserved.'));
?>
</span>
<br>
<?php esc_html_e('Exploore Design & Develope By :', 'exploore');?> <a target="_blank" class="copyright-url" href="https://themesgrove.com">
<?php esc_html_e('Themesgrove', 'exploore');?></a>
</p>
</div>
</div>
</div><!-- .site-info -->
</footer><!-- #colophon -->
<?php wp_footer(); ?>
</div>
</body>
</html>