-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
64 lines (42 loc) · 2.01 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
57
58
59
60
61
62
63
64
<?php global $woo_options; ?>
<div id="footer-out">
<?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-full col-<?php echo $total; ?>">
<?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><!-- /#footer-widgets -->
<?php endif; ?>
<div id="footer" 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><span><?php bloginfo(); ?></span> <?php _e('Copyright', 'woothemes') ?> © <?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><!-- /#footer -->
</div><!-- /#footer-out -->
</div><!-- /#wrapper -->
<?php wp_footer(); ?>
<?php woo_foot(); ?>
</body>
</html>