the_shortlink()
Displays the shortlink for a post.
Must be called from inside "The Loop"
Call like the_shortlink( __( 'Shortlinkage FTW' ) )
Uses: wp_get_shortlink()
1 time — 0.001029 sec (very slow) | 50000 times — 4.65 sec (fast) | PHP 7.1.2, WP 4.7.3
Hooks from the function
Return
null
. Nothing.
Usage
the_shortlink( $text, $title, $before, $after );
- $text(string)
- Optional The link text or HTML to be displayed.
Default: 'This is the short link.' - $title(string)
- Optional The tooltip for the link. Must be sanitized.
Default: sanitized post title - $before(string)
- Optional HTML to display before the link.
Default: '' - $after(string)
- Optional HTML to display after the link.
Default: ''
Changelog
Since 3.0.0 | Introduced. |