This function has been deprecated.
get_shortcut_link()
Retrieves the Press This bookmarklet link.
Source
File: wp-includes/deprecated.php
function get_shortcut_link() {
_deprecated_function( __FUNCTION__, 'WP-4.9.0' );
$link = '';
/**
* Filters the Press This bookmarklet link.
*
* @since WP-2.6.0
* @deprecated WP-4.9.0
*
* @param string $link The Press This bookmarklet link.
*/
return apply_filters( 'shortcut_link', $link );
}
Changelog
Version | Description |
---|---|
WP-4.9.0 | This function has been deprecated. |
WP-2.6.0 | Introduced. This function has been deprecated. |