检索按此书签链接。
原型
get_shortcut_link()
源文件
路径:wp-includes/deprecated.php
<?php
...
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 );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/get_shortcut_link/