Warning: This function has been deprecated. Use get_bookmark() instead.
get_link( int $bookmark_id, string $output = OBJECT, string $filter = 'raw' )
Retrieves bookmark data based on ID.
描述
参数
- $bookmark_id
-
(int)
(Required)
ID of link - $output
-
(string)
(Optional)
Type of output. Accepts OBJECT, ARRAY_N, or ARRAY_A.Default value: OBJECT
- $filter
-
(string)
(Optional)
How to filter the link for output. Accepts ‘raw’, ‘edit’, ‘attribute’, ‘js’, ‘db’, or ‘display’.Default value: ‘raw’
返回值
(object|array) Bookmark object or array, depending on the type specified by $output
.
源代码
File: wp-includes/deprecated.php
function get_link( $bookmark_id, $output = OBJECT, $filter = 'raw' ) {
_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmark()' );
return get_bookmark($bookmark_id, $output, $filter);
}
更新日志
Version | 描述 |
---|---|
2.1.0 | Use get_bookmark() |
2.0.0 | Introduced. |
相关函数
Uses
-
wp-includes/functions.php:
_deprecated_function() -
wp-includes/bookmark.php:
get_bookmark()
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈