Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created January 19, 2013 14:19
Show Gist options
  • Save WebEndevSnippets/4572898 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/4572898 to your computer and use it in GitHub Desktop.
Genesis: Customize 'Return To Top of Page' Text
add_filter( 'genesis_footer_backtotop_text', 'shireman_footer_backtotop_text' );
/**
* Customize the return to top of page text
*
*/
function shireman_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