wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_linkrating › WordPress Function

Seit1.0.1
Veraltet2.1.0
get_linkrating ( $link )
Parameter:
  • (object) $link Link object.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (mixed) Value of the 'link_rating' field, false otherwise.
Definiert in:
Codex:

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



Quellcode

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