I’m trying to put a “Back to top” link on my footer using the Genesis – return to top of page code as below –
//* Customize the return to top of page text
add_filter( ‘genesis_footer_backtotop_text’, ‘sp_footer_backtotop_text’ );
function sp_footer_backtotop_text($backtotop) {
$backtotop = ‘[footer_backtotop text=”Return to Top”]’;
return $backtotop;
}
But it is not working. My site url is http://shoutabrand.com
Can you please help me?
Thank you.