get_tag()WP 2.3.0

Retrieves a 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 from 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 passed back.

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

Хуков нет.

Возвращает

WP_Term|Массив|WP_Error|null. Tag data in type defined by $output parameter. WP_Error if $tag is empty, null if it does not exist.

Использование

get_tag( $tag, $output, $filter );
$tag(int|WP_Term|объект) (обязательный)
A tag ID or object.
$output(строка)
The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which correspond to a WP_Term object, an associative array, or a numeric array, respectively.
По умолчанию: OBJECT
$filter(строка)
How to sanitize tag fields.
По умолчанию: 'raw'

Список изменений

С версии 2.3.0 Введена.

Код get_tag() WP 6.5.2

function get_tag( $tag, $output = OBJECT, $filter = 'raw' ) {
	return get_term( $tag, 'post_tag', $output, $filter );
}