Skip to content

Instantly share code, notes, and snippets.

@ZellSnippets
Created September 14, 2013 14:47
Show Gist options
  • Save ZellSnippets/6562627 to your computer and use it in GitHub Desktop.
Save ZellSnippets/6562627 to your computer and use it in GitHub Desktop.
PHP: WP: Genesis Footer: Back to top text
// Change back to top text
add_filter( 'genesis_footer_backtotop_text', 'zell_footer_backtotop_text' );
function zell_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