Warning: This function has been deprecated. Use sanitize_bookmark_field() instead.
get_linkrating( object $link )
Legacy function that retrieved the value of a link’s link_rating field.
描述
参数
- $link
-
(object)
(Required)
Link object.
返回值
(mixed) Value of the ‘link_rating’ field, false otherwise.
源代码
File: wp-includes/deprecated.php
function get_linkrating( $link ) {
_deprecated_function( __FUNCTION__, '2.1.0', 'sanitize_bookmark_field()' );
return sanitize_bookmark_field('link_rating', $link->link_rating, $link->link_id, 'display');
}
更新日志
Version | 描述 |
---|---|
2.1.0 | Use sanitize_bookmark_field() |
1.0.1 | Introduced. |
相关函数
Uses
-
wp-includes/functions.php:
_deprecated_function() -
wp-includes/bookmark.php:
sanitize_bookmark_field()
Used By
-
wp-includes/deprecated.php:
get_links()
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- 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()用法示例
如有疑问,请前往问答中心反馈!
反馈