Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active April 16, 2019 14:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/4907453d5ae2cca783ebf54df34baf2b to your computer and use it in GitHub Desktop.
Save braddalton/4907453d5ae2cca783ebf54df34baf2b to your computer and use it in GitHub Desktop.
add_shortcode( 'top', 'back_to_top_link' );
/**
* @author Brad Dalton
* @link https://wpsites.net/web-design/add-back-return-to-top-link-in-genesis-footer/
*/
function back_to_top_link() {
$top = sprintf( '<a href="%s">' . __( 'Back To Top' ) . '</a>', __( '#' ) );
return $top;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment