de

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




get_tag [ WordPress Function ]

get_tag ( $tag, $output = OBJECT, $filter = 'raw' )
Parameter:
  • (int|object) $tag
  • (string) $output Optional. Constant OBJECT, ARRAY_A, or ARRAY_N
  • (string) $filter Optional. Default is raw or no WordPress defined filter will applied.
Gibt zurück:
  • (object|array) Return type based on $output value.
Definiert in:



Retrieve post tag by tag ID or tag object.

If you pass the $tag parameter an object, which is assumed to be the tag row object retrieved the database. It will cache the tag data.

If you pass $tag an integer of the tag ID, then that tag will be retrieved from the database, if it isn't already cached, and pass it back.

If you look at get_term(), then both types will be passed through several filters and finally sanitized based on the $filter parameter value.

Source


<?php
function &get_tag$tag$output OBJECT$filter 'raw' ) {
    return 
get_term$tag'post_tag'$output$filter );
}
?>

Beispiele [ wp-snippets.com ]

Top Google Suchergebnisse

Mehr ...

Nutzerduskussionen [ wordpress.org ]

0 Nutzerkommentare

Noch keine. Sei der Erste!

Neu hinzufügen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics