Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Last active December 17, 2015 05:09
Show Gist options
  • Save JiveDig/5556283 to your computer and use it in GitHub Desktop.
Save JiveDig/5556283 to your computer and use it in GitHub Desktop.
Customize the return to top of page text in Genesis.
// Customize the return to top of page text
add_filter( 'genesis_footer_backtotop_text', 'custom_footer_backtotop_text' );
function custom_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