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

get_linksbyname_withrating( string $cat_name = "noname", string $before = '', string $after = '<br />', string $between = " ", bool $show_images = true, string $orderby = 'id', bool $show_description = true, int $limit = -1, int $show_updated )

Gets the links associated with category ‘cat_name’ and display rating stars/chars.


Description

See also


Parameters

$cat_name

(string) (Optional) The category name to use. If no match is found uses all

Default value: "noname"

$before

(string) (Optional) The html to output before the link

Default value: ''

$after

(string) (Optional) The html to output after the link

Default value: '<br />'

$between

(string) (Optional) The html to output between the link/image and its description. Not used if no image or show_images is true

Default value: " "

$show_images

(bool) (Optional) Whether to show images (if defined).

Default value: true

$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: 'id'

$show_description

(bool) (Optional) Whether to show the description if show_images=false/not defined

Default value: true

$limit

(int) (Optional) Limit to X entries. If not specified, all entries are shown.

Default value: -1

$show_updated

(int) (Required) Whether to show last updated timestamp


Source

File: wp-includes/deprecated.php

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

	get_linksbyname($cat_name, $before, $after, $between, $show_images, $orderby, $show_description, true, $limit, $show_updated);
}


Changelog

Changelog
Version Description
WP-2.1.0 Use get_bookmarks()
WP-0.71 Introduced. This function has been deprecated. Use get_bookmarks() instead.