get_shortcut_link(): string

In this article

This function has been deprecated.

Retrieves the Press This bookmarklet link.

Return

string

Source

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

Hooks

apply_filters( ‘shortcut_link’, string $link )

Filters the Press This bookmarklet link.

Changelog

VersionDescription
4.9.0This function has been deprecated.
2.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.