get_linkobjects()

最后更新于:2021-11-26 09:15:46

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

Gets an array of link objects associated with category n.

参数

$category

(int) (Optional) The category to use. If no category supplied, uses all. Default 0.

$orderby

(string) (Optional) The order to output the links. E.g. ‘id’, ‘name’, ‘url’, ‘description’, ‘rating’, or ‘owner’. If you start the name with an underscore, the order will be reversed. Specifying ‘rand’ as the order 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 0.

响应

(array)

源文件

文件: gc-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;
}