To add a footer, you’ll need to plug into the thesis_hook_footer hook. You do this by adding the following code to the custom_functions.php file.
function custom_footer(){ ?>
<p>
Some info goes here.
<a href="mailto:email@domain.com">email@domain.com</a>
</p>
<?php
}
add_action('thesis_hook_footer', 'custom_footer');
From here, if you have the developer license (which I recommend you get if you have or will have multiple WordPress websites, you can remove the Thesis attribution. Note: If you don’t have the developer license, you will be breaking your license if you remove the attribution… so don’t do it… or go buy a developer license. Anyway, here’s the code you’ll need to remove the attribution:
remove_action('thesis_hook_footer', 'thesis_attribution');
{ 4 comments }