get_linkobjectsbyname()WP 1.0.1

Устарела с версии 2.1.0. Больше не поддерживается и может быть удалена. Используйте get_bookmarks().

Gets an array of link objects associated with category $cat_name.

$links = get_linkobjectsbyname( 'fred' );

foreach ( $links as $link ) {
	echo '<li>' . $link->link_name . '</li>';
}

Хуков нет.

Возвращает

Массив.

Использование

get_linkobjectsbyname( $cat_name, $orderby, $limit );
$cat_name(строка)
The category name to use. If no match is found, uses all.
По умолчанию: 'noname'
$orderby(строка)
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.
По умолчанию: 'name'
$limit(int)
Limit to X entries. If not specified, all entries are shown.
По умолчанию: -1

Заметки

Список изменений

С версии 1.0.1 Введена.
Устарела с 2.1.0 Use get_bookmarks()

Код get_linkobjectsbyname() WP 6.5.2

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);
}