get_shortcut_link

函数


get_shortcut_link ( No parameters )
定义位置
  • wp-includes/deprecated.php
    , line 3919
引入
2.6.0
弃用
4.9.0

Retrieves the Press This bookmarklet link.

function get_shortcut_link() {
	_deprecated_function( __FUNCTION__, '4.9.0' );

	$link = '';

	/**
	 * Filters the Press This bookmarklet link.
	 *
	 * @since 2.6.0
	 * @deprecated 4.9.0
	 *
	 * @param string $link The Press This bookmarklet link.
	 */
	return apply_filters( 'shortcut_link', $link );
}