Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created November 18, 2015 01:44
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 reasonstousegenesis/35ab8f995142d2b18a5a to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/35ab8f995142d2b18a5a to your computer and use it in GitHub Desktop.
Change the text of the back to top link with Genesis
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Change the text of the back to top link with Genesis
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/genesis-footer-backtotop-text/
*/
add_filter( 'genesis_footer_backtotop_text', 'rtug_back_to_top' );
function rtug_back_to_top() {
return '[footer_backtotop text="Back to Top"]';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment