Advertisement
Guest User

footer.php

a guest
Nov 15th, 2011
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.09 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>
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement