wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_shortcut_link › WordPress Function

Since2.6.0
已弃用4.9.0
get_shortcut_link ( 没有参数 )
返回:
  • (string)
定义在:
文档:

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 );
}