wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_shortcut_link › WordPress Function

Depuis2.6.0
Dépréciée4.9.0
get_shortcut_link ( Pas de paramètres )
Retourne:
  • (string)
Défini(e) dans:
Codex:

Retrieves the Press This bookmarklet link.



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