Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active April 18, 2019 10:11
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 braddalton/22ba50bfc9185e46814a503b36bfbb76 to your computer and use it in GitHub Desktop.
Save braddalton/22ba50bfc9185e46814a503b36bfbb76 to your computer and use it in GitHub Desktop.
add_action( 'genesis_entry_content', 'recipe_anchor_point', 5 );
function recipe_anchor_point() {
if ( is_singular( 'post' ) ) {
printf( '<p><a href="%s" class="anchor">' . __( 'JUMP TO RECIPE' ) . '</a></p>', __( '#recipe' ) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment