Warning: This function has been deprecated. Use get_bookmarks() instead.
get_linkobjectsbyname( string $cat_name = "noname", string $orderby = 'name', int $limit = -1 )
Gets an array of link objects associated with category $cat_name.
描述
$links = get_linkobjectsbyname( ‘fred’ ); foreach ( $links as $link ) { echo ‘
‘; }
参数
- $cat_name
-
(string)
(Optional)
The category name to use. If no match is found uses all.Default value: "noname"
- $orderby
-
(string)
(Optional)
The order to output the links. E.g. ‘id’, ‘name’, ‘url’, ‘描述’, or ‘rating’. Or maybe owner. If you start the name with an underscore the order will be reversed. You can also specify ‘rand’ as the order which will return links in a random order.Default value: ‘name’
- $limit
-
(int)
(Optional)
Limit to X entries. If not specified, all entries are shown.Default value: -1
返回值
(array)
源代码
File: wp-includes/deprecated.php
function get_linkobjectsbyname($cat_name = "noname" , $orderby = 'name', $limit = -1) {
_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' );
$cat_id = -1;
$cat = get_term_by('name', $cat_name, 'link_category');
if ( $cat )
$cat_id = $cat->term_id;
return get_linkobjects($cat_id, $orderby, $limit);
}
更新日志
Version | 描述 |
---|---|
2.1.0 | Use get_bookmarks() |
1.0.1 | Introduced. |
相关函数
Uses
-
wp-includes/deprecated.php:
get_linkobjects() -
wp-includes/functions.php:
_deprecated_function() -
wp-includes/taxonomy.php:
get_term_by()
你可能对这些文章感兴趣:
- 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()用法示例
如有疑问,请前往问答中心反馈!
反馈