Advertisement
Guest User

footer

a guest
Nov 5th, 2012
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <div id="footer" class="column span-14">
  2.  
  3. <div id="copyright" class="column span-7 first">
  4. <?php if( get_option( 'woo_footer_left' ) == 'true' ){
  5.  
  6. echo stripslashes( get_option( 'woo_footer_left_text' ) );
  7.  
  8. } else { ?>
  9. <p>&copy; <?php echo date( 'Y' ); ?> <?php bloginfo(); ?>. <?php _e( 'All Rights Reserved.', 'woothemes' ); ?></p>
  10. <?php } ?>
  11. </div>
  12.  
  13. <div id="credit" class="column span-7 last">
  14. <?php if ( get_option( 'woo_footer_right' ) == 'true' ) {
  15.  
  16. echo stripslashes( get_option( 'woo_footer_right_text' ) );
  17.  
  18. } else { ?>
  19. <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 echo get_template_directory_uri(); ?>/images/woothemes.png" width="74" height="19" alt="WooThemes" /></a></p>
  20. <?php } ?>
  21. </div>
  22.  
  23. </div>
  24. </div>
  25.  
  26. <?php wp_footer(); ?>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement