Advertisement
mariareh64

footer.php

Sep 18th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. <?php global $woo_options; ?>
  2.  
  3. <div id="footer-out">
  4.  
  5. <?php
  6. $total = $woo_options['woo_footer_sidebars']; if (!isset($total)) $total = 4;
  7. if ( ( woo_active_sidebar('footer-1') ||
  8. woo_active_sidebar('footer-2') ||
  9. woo_active_sidebar('footer-3') ||
  10. woo_active_sidebar('footer-4') ) && $total > 0 ) :
  11.  
  12. ?>
  13.  
  14. <div id="footer-widgets" class="col-full col-<?php echo $total; ?>">
  15.  
  16. <?php $i = 0; while ( $i < $total ) : $i++; ?>
  17. <?php if ( woo_active_sidebar('footer-'.$i) ) { ?>
  18.  
  19. <div class="block footer-widget-<?php echo $i; ?>">
  20. <?php woo_sidebar('footer-'.$i); ?>
  21. </div>
  22.  
  23. <?php } ?>
  24. <?php endwhile; ?>
  25.  
  26. <div class="fix"></div>
  27.  
  28. </div><!-- /#footer-widgets -->
  29. <?php endif; ?>
  30.  
  31. <div id="footer" class="col-full">
  32.  
  33. <div id="copyright" class="col-left">
  34. <?php if($woo_options['woo_footer_left'] == 'true'){
  35.  
  36. echo stripslashes($woo_options['woo_footer_left_text']);
  37.  
  38. } else { ?>
  39. <p><span><?php bloginfo(); ?></span> <?php _e('Copyright', 'woothemes') ?> &copy; <?php echo date('Y'); ?>. <?php _e('All Rights Reserved.', 'woothemes') ?></p>
  40. <?php } ?>
  41. </div>
  42.  
  43. <div id="credit" class="col-right">
  44. <?php if($woo_options['woo_footer_right'] == 'true'){
  45.  
  46. echo stripslashes($woo_options['woo_footer_right_text']);
  47.  
  48. } else { ?>
  49. <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>
  50. <?php } ?>
  51. </div>
  52.  
  53. </div><!-- /#footer -->
  54.  
  55. </div><!-- /#footer-out -->
  56.  
  57. </div><!-- /#wrapper -->
  58. <?php wp_footer(); ?>
  59. <?php woo_foot(); ?>
  60. </body>
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement