wpseek.com
				A WordPress-centric search engine for devs and theme authors
			the_shortlink › WordPress Function
Since3.0.0
Deprecatedn/a
› the_shortlink ( $text = '', $title = '', $before = '', $after = '' )
| Parameters: (4) | 
 | 
| Defined at: | 
 | 
| Codex: | |
| Change Log: | 
 | 
Displays the shortlink for a post.
Must be called from inside "The Loop" Call like the_shortlink( __( 'Shortlinkage FTW' ) )Related Functions: the_author_link, wp_get_shortlink, get_shortcut_link, the_author_posts_link, get_the_author_link
	Source
function the_shortlink( $text = '', $title = '', $before = '', $after = '' ) {
	$post = get_post();
	if ( empty( $text ) ) {
		$text = __( 'This is the short link.' );
	}
	$shortlink = wp_get_shortlink( $post->ID );
	if ( ! empty( $shortlink ) ) {
		$link = '<a rel="shortlink" href="' . esc_url( $shortlink ) . '">' . $text . '</a>';
		/**
		 * Filters the short link anchor tag for a post.
		 *
		 * @since 3.0.0
		 *
		 * @param string $link      Shortlink anchor tag.
		 * @param string $shortlink Shortlink URL.
		 * @param string $text      Shortlink's text.
		 * @param string $title     Shortlink's title attribute. Unused.
		 */
		$link = apply_filters( 'the_shortlink', $link, $shortlink, $text, $title );
		echo $before, $link, $after;
	}
}