Skip to content

Instantly share code, notes, and snippets.

@RCowles
Created October 20, 2014 22:54
Show Gist options
  • Save RCowles/177acfd0db2c78f6818b to your computer and use it in GitHub Desktop.
Save RCowles/177acfd0db2c78f6818b to your computer and use it in GitHub Desktop.
Customize the output of wp_get_shortlink on your site to replace all shortlinks with standard permalinks.
function tweakjp_cust_shortlink() {
global $post;
if ( !$post )
return;
return get_permalink($post->ID);
}
add_filter( 'get_shortlink', 'tweakjp_cust_shortlink' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment