How to Change the WordPress Genesis ‘Back to Top’ Text

Screen Shot 2013-09-22 at 7.27.26 PM I wanted to change the ‘back to top’ link in the footer on my Genesis Child theme.

I found this code to do it:

//
add_filter('genesis_footer_backtotop_text', 'custom_footer_backtotop_text');
function custom_footer_backtotop_text($backtotop) {
    $backtotop = ' Click to go to the top ';
    return $backtotop;
}
//

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top