-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar-footer.php
38 lines (34 loc) · 1.05 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
<?php
/*
* The Footer Widget Area
* @package kurama
*/
?>
</div><!--.mega-container-->
<?php if ( is_active_sidebar('footer-1') || is_active_sidebar('footer-2') || is_active_sidebar('footer-3') ) : ?>
<div id="footer-sidebar" class="widget-area">
<div class="container">
<?php
if ( is_active_sidebar( 'footer-1' ) ) : ?>
<div class="footer-column col-md-3 col-sm-6">
<?php dynamic_sidebar( 'footer-1'); ?>
</div>
<?php endif;
if ( is_active_sidebar( 'footer-2' ) ) : ?>
<div class="footer-column col-md-3 col-sm-6">
<?php dynamic_sidebar( 'footer-2'); ?>
</div>
<?php endif;
if ( is_active_sidebar( 'footer-3' ) ) : ?>
<div class="footer-column col-md-3 col-sm-6"> <?php
dynamic_sidebar( 'footer-3'); ?>
</div>
<?php endif;
if ( is_active_sidebar( 'footer-4' ) ) : ?>
<div class="footer-column col-md-3 col-sm-6"> <?php
dynamic_sidebar( 'footer-4'); ?>
</div>
<?php endif; ?>
</div>
</div> <!--#footer-sidebar-->
<?php endif; ?>