Been spending a couple of hours trying to remove this texts on the footer "Get smart with the Thesis" on my wordpress site. I used thesis theme. I've tried looking for the footer file containing the texts but no luck. I also tried removing it from the hooks. "custom_functions.php" but still doesn't work. Any help would greatly appreciate开发者_C百科d.
This might help
http://www.sugarrae.com/thesis-hooks-dummies-tutorial/#change-footer
/* Custom Footer Hook */
remove_action('thesis_hook_footer', 'thesis_attribution');
function add_custom_footer () {
?>
<p>© 2008 Ourblog.com – All rights reserved. – <a href="http://www.ourblog.com/privacy-policy/">Privacy Policy</a></p>
<p>No content on this site may be reused in any fashion without written permission from Ourblog.com or whatever you want your footer to include</p>
<?php
}
add_action('thesis_hook_footer', 'add_custom_footer');
Go to the following directory:
\wordpress_root\wp-content\themes\your_theme_name
In this folder is a file called footer.php
In this file you will find the text you want to remove.
SORRY Did not see that you did this already:
without downloading the theme I am not sure. Please post the footer.php file so we can help.
Its very simple. You can use Thesis Hooks to do that.
remove_action('thesis_hook_footer', 'thesis_attribution');
Read More here
For thesis 1.x version you have to add a code to remove it from the footer. But for the latest thesis 2 version you can drag and delete that footer attribution box using the skin editor option of the thesis 2 version. For more info refer to these posts
- For thesis 2.x :Remove thesis attribution link from Thesis 2 footer
- For thesis 1.x Remove thesis footer link for thesis theme 1.8
Hope this will be helpful.
精彩评论