-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer.php
56 lines (44 loc) · 2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php global $woo_options; ?>
<?php
$total = $woo_options[ 'woo_footer_sidebars' ]; if (!isset($total)) $total = 4;
if ( ( woo_active_sidebar( 'footer-1') ||
woo_active_sidebar( 'footer-2') ||
woo_active_sidebar( 'footer-3') ||
woo_active_sidebar( 'footer-4') ) && $total > 0 ) :
?>
<div id="footer-widgets" class="col-<?php echo $total; ?>">
<div id="footer-wrapper">
<?php $i = 0; while ( $i < $total ) : $i++; ?>
<?php if ( woo_active_sidebar( 'footer-'.$i) ) { ?>
<div class="block footer-widget-<?php echo $i; ?>">
<?php woo_sidebar( 'footer-'.$i); ?>
</div>
<?php } ?>
<?php endwhile; ?>
<div class="fix"></div>
</div><!-- #wrapper -->
</div><!-- /#footer-widgets -->
<?php endif; ?>
</div><!-- /#wrapper -->
<div id="footer">
<div class="col-full">
<div id="copyright" class="col-left">
<?php if($woo_options[ 'woo_footer_left' ] == 'true'){
echo stripslashes($woo_options[ 'woo_footer_left_text' ]);
} else { ?>
<p><?php bloginfo(); ?> © <?php echo date( 'Y' ); ?>. <?php _e( 'All Rights Reserved.', 'woothemes' ) ?></p>
<?php } ?>
</div>
<div id="credit" class="col-right">
<?php if($woo_options[ 'woo_footer_right' ] == 'true'){
echo stripslashes($woo_options[ 'woo_footer_right_text' ]);
} else { ?>
<!--<p><?php _e( 'Powered by', 'woothemes' ) ?> <a href="http://www.wordpress.org">WordPress</a>. <?php _e( 'Designed by', 'woothemes' ) ?> <a href="<?php $aff = $woo_options[ 'woo_footer_aff_link' ]; if(!empty($aff)) { echo $aff; } else { echo 'http://www.woothemes.com'; } ?>"><img src="<?php bloginfo( 'template_directory' ); ?>/images/woothemes.png" width="74" height="19" alt="Woo Themes" /></a></p>-->
<?php } ?>
</div>
</div>
</div><!-- /#footer -->
<?php wp_footer(); ?>
<?php woo_foot(); ?>
</body>
</html>