wp_shortlink_wp_head

Definition:
function wp_shortlink_wp_head() {}

Inject rel=shortlink into head if a shortlink is defined for the current page.
Attached to the wp_head action.

Source code

function wp_shortlink_wp_head() {

	$shortlink = wp_get_shortlink( 0, 'query' );



	if ( empty( $shortlink ) )

		return;



	echo "<link rel='shortlink' href='" . esc_url( $shortlink ) . "' />\n";

}

4125

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: