Created
October 20, 2012 15:10
-
-
Save WebEndevSnippets/3923519 to your computer and use it in GitHub Desktop.
Genesis: Customize 'Return to Top'
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
/** 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