get_links_withrating()WP 0.71

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

Gets the links associated with category n and display rating stars/chars.

Хуков нет.

Возвращает

null. Ничего (null).

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

get_links_withrating($category = -1, $before = '', $after = '
', $between = " ", $show_images = true,;

Заметки

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

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

Код get_links_withrating() WP 6.4.3

function get_links_withrating($category = -1, $before = '', $after = '<br />', $between = " ", $show_images = true,
							$orderby = 'id', $show_description = true, $limit = -1, $show_updated = 0) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'get_bookmarks()' );

	get_links($category, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated);
}