get_term_meta

Advertisement

Summery Summery

Retrieves metadata for a term.

Syntax Syntax

get_term_meta( int $term_id, string $key = '', bool $single = false )

Parameters Parameters

$term_id

(Required) Term ID.

$key

(Optional) The meta key to retrieve. If no key is provided, fetches all metadata for the term.

Default value: ''

$single

(Optional) Whether to return a single value. If false, an array of all values matching the $term_id/$key pair will be returned. Default: false.

Default value: false

Return Return

(mixed) If $single is false, an array of metadata values. If $single is true, a single metadata value.

Source Source

File: wp-includes/taxonomy.php

 * @param mixed  $meta_value Metadata value. Must be serializable if non-scalar.
 * @param bool   $unique     Optional. Whether the same key should not be added.
 *                           Default false.

Advertisement

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.

Advertisement

Leave a Reply