Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active January 30, 2019 13:10
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/133e9b8672692832592b5c1c9f53657b to your computer and use it in GitHub Desktop.
Save braddalton/133e9b8672692832592b5c1c9f53657b to your computer and use it in GitHub Desktop.
Add Shortlink on Genesis Tag Archives https://wp.me/p1lTu0-ie6
add_action( 'genesis_entry_footer', 'add_wp_get_shortlink' );
function add_wp_get_shortlink() {
if ( is_tag() ) {
printf( '<a href="%s">' . __( 'Your link text here' ) . '</a>', wp_get_shortlink() );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment