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



wp_get_link_cats › WordPress Function

Seit2.1.0
Veraltetn/v
wp_get_link_cats ( $link_id = 0 )
Parameter:
  • (int) $link_id Link ID to look up.
    Erforderlich: Nein
    Standard:
Gibt zurück:
  • (int[]) The IDs of the requested link's categories.
Definiert in:
Codex:

Retrieves the link category IDs associated with the link specified.



Quellcode

function wp_get_link_cats( $link_id = 0 ) {
	$cats = wp_get_object_terms( $link_id, 'link_category', array( 'fields' => 'ids' ) );
	return array_unique( $cats );
}