wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_shortcut_link › WordPress Function

Seit2.6.0
Veraltet4.9.0
get_shortcut_link ( Keine Parameter )
Gibt zurück:
  • (string)
Definiert in:
Codex:

Retrieves the Press This bookmarklet link.



Quellcode

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