Created
September 14, 2013 14:47
-
-
Save ZellSnippets/6562627 to your computer and use it in GitHub Desktop.
PHP: WP: Genesis Footer: Back to top text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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