Many Thesis theme users have had this small gripe – they haven’t found an elegant way of removing the attribution link from the footer which they are allowed to if they have the developer’s edition of the Thesis theme for Wordpress. Welcome to the world of hooks. As a result of well thought and intelligent coding, Thesis relies on the Wordpress hook system and comes with its own numerous hooks. While it will be pretty straightforward to add html with the hooks, removing it may be the hidden side of the coin. Here’s a simple oneliner that you can use in your custom_functions.php file to remove the attribution link.
remove_action('thesis_hook_footer', 'thesis_attribution');
As such you can also remove other html in a similar way. See the entire hook reference at the Thesis theme’s blog.
Bookmark & Share —
Search for More
{ 22 comments… read them below or add one }
Thanks for the tip. Worked perfectly on my site.
I just put Thesis on a new-ish blog and was wondering how to remove the attribute. I pasted the code you posted just below the commented out section and it worked beautifully. Thanks.
any update on the new 1.3.3
how to remove the link
here the original code
Thanks for the tip on removal of attribution link. I had a hard time removing it.
Worked like a charm, thank you.
Pure genius, thanks. I started out trying to replace the footer with a custom following the instructions on the thesis site. This is way better.
Wow, that was totally painless. I wish everything were that easy. Thanks!
Thanks. Worked very well!
It doesn’t work for me. Nothing change main page. Any idea?
Great tip, saved me a lot of work!. Thanks.
Thanks but it is not helpful for newbie like me, you should provide detailed tutorial, not a general introduction. Thanks
Thanks for the tip. I’d seen this elsewhere but your explanation was stright to the point AND your SEO made it come to the top in my Google search. BRAVO!
Is there anywhere in particular in the custom_functions.php file that I should add the oneliner? I have tried various combinations so far and no success yet.
At the far end.. the last thing in custom_functions.php. That makes sure it is being parsed as php and not html/text etc.
hey whats the name of that tag cloud plugin you use?
A most wonderful tip! Thank you very much!
The code worked perfectly I must admit Thesis is a really customizable theme, about that can you tell me (if you know) how you can change the submit button on comments?
Awesome! Guess we should be reading the hook reference.
Much appreciated, Tia
I’ve been struggling with the hooks becuase I am pretty much code illiterate, and stumbled here looking for something else.
In case anyone else is as lost as I am with the hooks, I thought I’d add in that there is an easier way to remove the attribution. If you add a plugin called “open hook” you can just click a checkbox in the setting to remove it. This plugin also allows gives you the ability to customize hooks without touching that custom_functions.php file.
Here’s the link: http://wordpress.org/extend/plugins/thesis-openhook/
Yes good code… It help me get out fear of google penalty for using hidden links. My theme designer make links hidden.
When you use the above command
“remove_action(‘thesis_hook_footer’, ‘thesis_attribution’);” from custom editor it will remove thesis footer link but some people complained that they can still see “Wordpress Admin” link in footer.
If you are looking to modify footer file you can open “thesis/lib/html/footer.php” and change “function thesis_attribution()” function.
Katie, the wp admin link can be disabled through the Thesis options.