How To Change The Footer Content In Thesis Theme For WordPress

by Matt on June 12, 2009

Thesis will never cease to amaze designers with its unparalleled ease of use. One of the few customizations that many people want is a custom footer. Unfortunately, there is no way to change the footer content in Thesis Options or Design Options. So, lucky for you, I can show you exactly how to accomplish your own custom footer.

  1. Follow the first 5 steps of this post.
  2. After all the text, space a line or two and stick in the following:
    remove_action('thesis_hook_footer', 'thesis_attribution');
    function my_custom_footer() {
    ?>
    Whatever you want to say goes here. Hint: use p tags.
    <?php
    }
    add_action('thesis_hook_footer', 'my_custom_footer');

Did you see how freaking easy that was? Let me quickly break down what you just did.

First, we removed the default content of the footer by putting this in custom_functions.php:

remove_action('thesis_hook_footer', 'thesis_attribution');

Second, we declared a new function that will determine the new footer content by adding this:

function my_custom_footer() {
?>
Whatever you want to say goes here.
<?php
}

Lastly, we told Thesis to put the new footer content into the footer by writing this:

add_action('thesis_hook_footer', 'my_custom_footer');

Using Thesis is the easiest and most effective way to start and maintain a website. Good luck and happy coding :)

{ 8 comments… read them below or add one }

Fatos October 23, 2009 at 12:10 pm

Thank you again, very nice tutorials… by the way I think you forgot to put the underline between remove and action (remove action… remove_action) at the highlighted code and somebody might just copy and paste the code without the underline and it might not work.
All the best

Reply

Matt October 24, 2009 at 9:14 am

@Fatos
Hmm. It is definitely there.

Reply

Doug Hudiburg January 5, 2010 at 12:33 pm

Thanks Matt, this was exactly what I was looking for, you saved me a ton of time.

Reply

Dee March 24, 2010 at 6:20 pm

I did that. The Thesis attribution is gone, but the new content doesn’t show up and the Wordpress label is still there. ??

Reply

Matt March 25, 2010 at 5:04 pm

@Dee
The Wordpress Link is controlled under Design Options -> Display Options -> Administration. I’ll need to see your site in order to help you out further.

Reply

Paul Hopkins April 19, 2010 at 4:20 am

Excellent tutorial! Changed it in two minutes!

Reply

Matt April 19, 2010 at 9:59 pm

Success!

Reply

Gail Jordan May 29, 2010 at 9:06 pm

Please explaing what a p tag is ….Hint: use p tags.
Thank you for the wonderful step by step tutorials
My website is under reconstruction.

I would love to know how to fill the header with image. Example http://www.hebronelks.com

Reply

Leave a Comment

Previous post:

Next post: