Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
Created October 29, 2013 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shemul49rmc/7214065 to your computer and use it in GitHub Desktop.
Save shemul49rmc/7214065 to your computer and use it in GitHub Desktop.
Customize the return to top of page text
//* Customize the return to top of page text*http://iamshemul.com/?p=2395*//
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment