Advertisement
Guest User

Kevin Banet

a guest
Mar 20th, 2010
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.88 KB | None | 0 0
  1. <div class="footer">
  2.         <div class="left">
  3.             <ul>
  4.                 <li><a href="<?php echo get_option('home'); ?>/"><?php _e('Home','cp'); ?></a></li>
  5.                 <?php wp_list_pages('title_li=&depth=1&exclude=' . get_option('excluded_pages') .'' ); ?>
  6.             </ul>
  7.             <div style="clear: both;"></div>
  8.             <strong><?php bloginfo('name'); ?></strong>
  9.         </div>
  10.         <div class="right">
  11.             <?php _e('Theme by','cp'); ?> <a target="_blank" href="http://www.wicked-wordpress-themes.com/wordpress-themes/wordpress-classifieds/" title="Classified Ads Theme">classifieds wordpress theme</a><br />
  12.             <?php _e('Powered by','cp'); ?> <a target="_blank" href="http://www.wordpress.org/" title="WordPress">WordPress</a>
  13.         </div>
  14.         <div class="clear"></div>
  15.     </div>
  16.  
  17. <?php wp_footer(); ?>
  18.  
  19.  
  20. <?php if ( get_option('google_analytics_box') <> "" ) { echo stripslashes(get_option('google_analytics_box')); } ?>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement