-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfooter-widgets.php
executable file
·61 lines (56 loc) · 1.66 KB
/
footer-widgets.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
59
60
61
<?php
/*
*
* Espresso Branding Widget Area - branding
*
*/
$footer_layouts = explode("-", espresso_footer_widget_layouts() );
if(!in_array("none" , $footer_layouts)){
?>
<section id="footer-widgets" <?php espresso_footer_widget_container(); ?> >
<div id="footer-widgets-wrap-outer" class="footer_widgets_wrap_outer clearfix">
<div id="footer-widgets-wrap" class="footer_widgets_wrap clearfix">
<?php
if( in_array("footer1" , $footer_layouts) ) { ?>
<section id="footer1" <?php espresso_footer_widget_classes("footer1"); ?> >
<ul class="xoxo" >
<?php if (! dynamic_sidebar( 'footer1-widget-area' ) ): ?>
<li> </li>
<?php endif; ?>
</ul>
</section>
<?php } ?>
<?php
if( in_array("footer2" , $footer_layouts) ) { ?>
<section id="footer2" <?php espresso_footer_widget_classes("footer2"); ?> >
<ul class="xoxo" >
<?php if (! dynamic_sidebar( 'footer2-widget-area' ) ): ?>
<li> </li>
<?php endif; ?>
</ul>
</section>
<?php } ?>
<?php
if( in_array("footer3" , $footer_layouts) ) { ?>
<section id="footer3" <?php espresso_footer_widget_classes("footer3"); ?> >
<ul class="xoxo" >
<?php if (! dynamic_sidebar( 'footer3-widget-area' ) ): ?>
<li> </li>
<?php endif; ?>
</ul>
</section>
<?php } ?>
<?php
if( in_array("footer4" , $footer_layouts) ) { ?>
<section id="footer4" <?php espresso_footer_widget_classes("footer4"); ?> >
<ul class="xoxo" >
<?php if (! dynamic_sidebar( 'footer4-widget-area' ) ): ?>
<li> </li>
<?php endif; ?>
</ul>
</section>
<?php } ?>
</div>
</div>
</section>
<?php } ?>