Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created October 20, 2012 15:10
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 WebEndevSnippets/3923519 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/3923519 to your computer and use it in GitHub Desktop.
Genesis: Customize 'Return to Top'
/** Customize the 'Return to Top of Page' */
add_filter( 'genesis_footer_backtotop_text', 'photos4life_footer_backtotop_text' );
function photos4life_footer_backtotop_text($backtotop) {
$backtotop = '[footer_backtotop text="Back To Top"]';
return $backtotop;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment