Advertisement
Guest User

Untitled

a guest
Jul 16th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <?php if ( woo_active_sidebar('footer-left') || woo_active_sidebar('footer-right' ) ) : ?>
  2. <div id="footer-widgets">
  3. <div class="col-full">
  4.  
  5. <div class="left block">
  6. <?php woo_sidebar('footer-left'); ?>
  7. </div>
  8. <div class="right block">
  9. <?php woo_sidebar('footer-right'); ?>
  10. </div>
  11. <div class="fix"></div>
  12.  
  13. </div><!-- /.col-full -->
  14. </div><!-- /#footer-widgets -->
  15. <?php endif; ?>
  16.  
  17. <div id="footer">
  18. <div class="col-full">
  19.  
  20. <div id="copyright" class="col-left">
  21. <?php if(get_option('woo_footer_left') == 'true'){
  22.  
  23. echo stripslashes(get_option('woo_footer_left_text'));
  24.  
  25. } else { ?>
  26. <p>&copy; <?php echo date('Y'); ?> <?php bloginfo(); ?>. <?php _e('All Rights Reserved.', 'woothemes') ?></p>
  27. <?php } ?>
  28. </div>
  29.  
  30. <div id="credit" class="col-right">
  31. <?php if(get_option('woo_footer_right') == 'true'){
  32.  
  33. echo stripslashes(get_option('woo_footer_right_text'));
  34.  
  35. } else { ?>
  36. <p><?php _e('Powered by', 'woothemes') ?> <a href="http://www.wordpress.org">WordPress</a>. <?php _e('Designed by', 'woothemes') ?> <a href="<?php $aff = get_option('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="87" height="21" alt="Woo Themes" /></a></p>
  37. <?php } ?>
  38. </div>
  39.  
  40. </div><!-- /.col-full -->
  41. </div><!-- /#footer -->
  42.  
  43. </div><!-- /#wrapper -->
  44. <?php wp_footer(); ?>
  45. <?php woo_foot(); ?>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement