forked from City-of-Helsinki/wordpress-helfi-spouse-program
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
38 lines (30 loc) · 1.25 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
<footer id="site-footer">
<div class="container">
<div class="footer-box-container">
<div class="footer-box">
<?php if( is_active_sidebar( 'footer_content_left' ) ) : ?>
<div class="widgetized-page-before-content-widget-area">
<?php dynamic_sidebar( 'footer_content_left' ); ?>
</div>
<?php endif; ?>
</div>
<div class="footer-box">
<?php if( is_active_sidebar( 'footer_content' ) ) : ?>
<div class="widgetized-page-before-content-widget-area">
<?php dynamic_sidebar( 'footer_content' ); ?>
</div>
<?php endif; ?>
</div>
<div class="footer-box">
<?php if( is_active_sidebar( 'footer_content_right' ) ) : ?>
<div class="widgetized-page-before-content-widget-area">
<?php dynamic_sidebar( 'footer_content_right' ); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>