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

get_linkrating( object $link )

Legacy function that retrieved the value of a link’s link_rating field.


Description Description

See also See also


Top ↑

Parameters Parameters

$link

(object) (Required) Link object.


Top ↑

Return Return

(mixed) Value of the 'link_rating' field, false otherwise.


Top ↑

Source Source

File: wp-includes/deprecated.php

function get_linkrating( $link ) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'sanitize_bookmark_field()' );
	return sanitize_bookmark_field('link_rating', $link->link_rating, $link->link_id, 'display');
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Use sanitize_bookmark_field()
1.0.1 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.