-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
25 lines (25 loc) · 959 Bytes
/
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
<div class="container-fluid" id="footer-section">
<div class="container">
<div class="row">
<div class="col-sm-3" id="footer1">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("footer1") ) : ?>
<?php endif;?>
</div>
<div class="col-sm-3" id="footer2">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("footer2") ) : ?>
<?php endif;?>
</div>
<div class="col-sm-3" id="footer3">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("footer3") ) : ?>
<?php endif;?>
</div>
<div class="col-sm-3" id="footer4">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("footer4") ) : ?>
<?php endif;?>
</div>
</div>
</div>
<?php
wp_footer();
?>
</div>