get_link

函数
get_link ( $bookmark_id, $output = OBJECT, $filter = 'raw' )
参数
  • (int) $bookmark_id ID of link
    Required:
  • (string) $output Optional. Type of output. Accepts OBJECT, ARRAY_N, or ARRAY_A. Default OBJECT.
    Required:
    Default: OBJECT
  • (string) $filter Optional. How to filter the link for output. Accepts 'raw', 'edit', 'attribute', 'js', 'db', or 'display'. Default 'raw'.
    Required:
    Default: 'raw'
返回值
  • (object|array) Bookmark object or array, depending on the type specified by `$output`.
相关
  • get_bookmark()
定义位置
相关方法
get_linksedit_linkget_day_linkget_tag_linkwp_get_links
引入
2.0.0
弃用
2.1.0

get_link: 这个函数用来为一个给定的链接ID检索HTML链接标签。

根据ID来检索书签数据。

function get_link( $bookmark_id, $output = OBJECT, $filter = 'raw' ) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmark()' );
	return get_bookmark($bookmark_id, $output, $filter);
}

常见问题

FAQs
查看更多 >