Created
January 19, 2013 14:19
-
-
Save WebEndevSnippets/4572898 to your computer and use it in GitHub Desktop.
Genesis: Customize 'Return To Top of Page' 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
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