-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar-footer.php
58 lines (54 loc) · 1.76 KB
/
sidebar-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
<?php
/**
* The Footer Sidebar
*
* @package WordPress
* @subpackage Sepe_Caxias
* @since Sepe Caxias 1.0
*/
?>
<section class="footer-widgets">
<div class="container">
<div class="row">
<?php
if (is_active_sidebar('sidebar-2')) {
?>
<div class="col-md-4">
<div id="supplementary">
<div id="footer-sidebar" class="footer-sidebar widget-area" role="complementary">
<?php dynamic_sidebar('sidebar-2'); ?>
</div><!-- #footer-left-sidebar -->
</div><!-- #supplementary -->
</div>
<?php
}
?>
<?php
if (is_active_sidebar('sidebar-3')) {
?>
<div class="col-md-4">
<div id="supplementary">
<div id="footer-sidebar" class="footer-sidebar widget-area" role="complementary">
<?php dynamic_sidebar('sidebar-3'); ?>
</div><!-- #footer-center-sidebar -->
</div><!-- #supplementary -->
</div>
<?php
}
?>
<?php
if (is_active_sidebar('sidebar-4')) {
?>
<div class="col-md-4">
<div id="supplementary">
<div id="footer-sidebar" class="footer-sidebar widget-area" role="complementary">
<?php dynamic_sidebar('sidebar-4'); ?>
</div><!-- #footer-right-sidebar -->
</div><!-- #supplementary -->
</div>
<?php
}
?>
</div><!--.row-->
</div><!--.container-->
</section><!--.footer-sidebar-->