Thesis 2.0 footer Copyright


/ Published in: PHP
Save to your folder(s)

I am using thesis developer version to redesign the site [FFXIV Gil](http://www.cheapffxivgils.com/ "Cheap FFXIV GIL").
Before using the code, you should add the Unique Hook Name to BOX in template(see [the official tutorial](http://diythemes.com/thesis/rtfm/add-custom-php-functions/ "official tutorial")). In my case, I am using the name 'footer_copy'.


Copy this code and paste it in your HTML
  1. <?php
  2. function copyright() {
  3. $url = site_url();
  4. $anchor = get_bloginfo( 'description' );
  5. echo '<p>Copyright &copy; 2010&ndash;' . date('Y').'&nbsp;<a href="'.$url.'">'.$anchor.'</a></p>';
  6. }
  7. add_action('thesis_hook_container_footer_copy_bottom', 'copyright');

URL: http://www.wow-goldstore.com/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.