Just the code please
Add this to custom_functions.php:
function copyright() {
echo '<p>Copyright © 2008–' . date('Y') . '</p>';
}
add_action('thesis_hook_footer', 'copyright', '99');
Note: The year that appears after the dash will always be the current year. In other words, it will update itself so you don’t have to worry about it every year.

