Advertisement
Ortund

Untitled

Oct 9th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.01 KB | None | 0 0
  1. // Still reads as © Copyright 2011........
  2. // URL: http://blog.loganyoung.za.net
  3.  
  4. // footer.php
  5. <!-- Begin Footer -->
  6. <div id="blog-footer" class="shadow">
  7. <?php dynamic_sidebar('Thin Footer Area'); ?>
  8.    
  9.     <div id="footer-base">
  10.         <span class="copyright">
  11.         <?php if (get_option('wgcp_footer_text') != '') { echo stripslashes(get_option('wgcp_footer_text')); } else { $blog_name = get_bloginfo('name'); $blog_url = home_url(); ?>
  12.             <p>Copyright &copy; <?php echo(date('Y')) ?> <a href="<?php echo $blog_url; ?>"><?php echo $blog_name; ?></a> - <?php _e('All rights reserved','webello'); ?>.</p>
  13.         <?php } ?>
  14.         </span>
  15.         <?php if (get_option('wgcp_feedburner_url') != '') { ?>
  16.         <span class="subscribe"><a href="<?php echo get_option('wgcp_feedburner_url'); ?>" class="rss"><?php if($translation == 'enable_translation') { echo get_option('wgcp_subs_string'); } else { _e('Subscribe', 'webello'); } ?></a></span><?php } ?>
  17.     </div>
  18. </div>
  19. <!-- End Footer -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement