get_shortcut_link()WP 2.6.0

Deprecated from version 4.9.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Retrieves the Press This bookmarklet link.

Hooks from the function

Return

String.

Usage

get_shortcut_link();

Changelog

Since 2.6.0 Introduced.
Deprecated since 4.9.0

get_shortcut_link() code WP 6.4.3

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