wp_shortlink_header

函数


wp_shortlink_header ( No parameters )
定义位置
  • wp-includes/link-template.php
    , line 4112
引入
3.0.0
弃用

如果当前页面定义了一个短链接,则发送一个Link: rel=shortlink头。

附在{@see ‘wp’}动作上。

function wp_shortlink_header() {
	if ( headers_sent() ) {
		return;
	}

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

	if ( empty( $shortlink ) ) {
		return;
	}

	header( 'Link: ; rel=shortlink', false );
}