返回介绍

get_linkobjects()

发布于 2017-09-10 23:29:16 字数 2680 浏览 1041 评论 0 收藏 0

Warning: This function has been deprecated. Use get_bookmarks() instead.

get_linkobjects( int $category,  string $orderby = 'name',  int $limit )

Gets an array of link objects associated with category n.


description

Usage:

$links = get_linkobjects(1);
if ($links) {
    foreach ($links as $link) {
        echo '<li>'.$link->link_name.'<br />'.$link->link_description.'</li>';
    }
}

Fields are:

  • link_id
  • link_url
  • link_name
  • link_image
  • link_target
  • link_category
  • link_description
  • link_visible
  • link_owner
  • link_rating
  • link_updated
  • link_rel
  • link_notes

参数

$category

(int) (Required) The category to use. If no category supplied uses all

$orderby

(string) (Optional) the order to output the links. E.g. 'id', 'name', 'url', 'description', 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) (Required) Limit to X entries. If not specified, all entries are shown.


返回值

(array)


源代码

File: wp-includes/deprecated.php

function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' );

	$links = get_bookmarks( array( 'category' => $category, 'orderby' => $orderby, 'limit' => $limit ) ) ;

	$links_array = array();
	foreach ($links as $link)
		$links_array[] = $link;

	return $links_array;
}

更新日志

Versiondescription
2.1.0Use get_bookmarks()
1.0.1Introduced.

相关函数

Uses

  • wp-includes/functions.php: _deprecated_function()
  • wp-includes/bookmark.php: get_bookmarks()

Used By

  • wp-includes/deprecated.php: get_linkobjectsbyname()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文