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; } //