get_shortcut_link()

最后更新于:2021-11-27 00:14:20

get_shortcut_link()

Retrieves the Press This bookmarklet link.

源文件

文件: gc-includes/deprecated.php

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