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



get_tag_link › WordPress Function

Seit2.3.0
Veraltetn/v
get_tag_link ( $tag )
Parameter:
  • (int|object) $tag Tag ID or object.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (string) Link on success, empty string if tag does not exist.
Definiert in:
Codex:

Retrieves the link to the tag.



Quellcode

function get_tag_link( $tag ) {
	return get_category_link( $tag );
}