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

get_links_withrating() WordPress Function

The get_links_withrating() WordPress function allows you to get the links from a specified link category, with the added bonus of being able to see the ratings for each link. This function is useful if you want to see how popular a particular link is, or if you're looking for links with a high rating.

get_links_withrating( int $category = -1, 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 n and display rating stars/chars.


Description

Top ↑

See also


Top ↑

Parameters

$category

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

Default value: -1

$before

(string)(Optional) The HTML to output before the link.

Default value: ''

$after

(string)(Optional) The HTML to output after the link. Default <br />.

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 ' '.

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', '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: '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)(Optional) Whether to show last updated timestamp. Default 0.


Top ↑

Source

File: wp-includes/deprecated.php

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


Top ↑

Changelog

Changelog
VersionDescription
2.1.0Use get_bookmarks()
0.71Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More