Thesis: Add Copyright to Footer


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

Self-updating copyright


Copy this code and paste it in your HTML
  1. function copyright() {
  2. echo '<p>Copyright &copy; 2008&ndash;' . date('Y') . '</p>';
  3. }
  4. add_action('thesis_hook_footer', 'copyright', '99');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.