Skip to content

Instantly share code, notes, and snippets.

@eugenoprea
Created February 3, 2013 01:30
Show Gist options
  • Save eugenoprea/4700114 to your computer and use it in GitHub Desktop.
Save eugenoprea/4700114 to your computer and use it in GitHub Desktop.
How to Customize the Genesis Footer - Return to Top of Page
/** Customize the Return to Top of Page */
add_filter('genesis_footer_backtotop_text', 'eo_custom_footer_backtotop');
function eo_custom_footer_backtotop($backtotop)
{
$backtotop = '<a href="#wrap" rel="nofollow">Click to Go Up</a>';
return $backtotop;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment