-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
29 lines (28 loc) · 1.1 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
</div>
<div id="footer">
<div id="wrapperfooter" class="container">
<div id="" class="entry-content">
<?php if ( is_active_sidebar( 'widgetfooterleft' ) OR is_active_sidebar( 'widgetfootercenter' ) OR is_active_sidebar( 'widgetfooterright' ) ) { ?>
<?php if ( is_active_sidebar( 'widgetfooterleft' ) ) : ?>
<div class="one-third column">
<?php dynamic_sidebar( 'widgetfooterleft' ); ?>
</div>
<?php endif; // end widgetfooterleft ?>
<?php if ( is_active_sidebar( 'widgetfootercenter' ) ) : ?>
<div class="one-third column">
<?php dynamic_sidebar( 'widgetfootercenter' ); ?>
</div>
<?php endif; // end widgetfootercenter ?>
<?php if ( is_active_sidebar( 'widgetfooterright' ) ) : ?>
<div class="one-third column">
<?php dynamic_sidebar( 'widgetfooterright' ); ?>
</div>
<?php endif; // end widgetfooterright ?>
<?php }; // end widgetfooterright ?>
<div class="clear"></div>
<?php wp_footer() ?>
</div>
</div>
</div>
</body>
</html>