Search code examples
phpwordpresswordpress-thesis-theme

Remove "Get smart with the Thesis Wordpress Theme" on wordpress footer


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 appreciated.


Solution

  • 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');