Uses
Uses | Description |
---|---|
wp-includes/meta.php: get_metadata() | Retrieves the value of a metadata field for the specified object type and ID. |
Retrieves metadata for a term.
(int) (Required) Term ID.
(string) (Optional) The meta key to retrieve. By default, returns data for all keys.
Default value: ''
(bool) (Optional) Whether to return a single value. This parameter has no effect if $key is not specified.
Default value: false
(mixed) An array if $single is false. The value of the meta field if $single is true. False for an invalid $term_id.
File: wp-includes/taxonomy.php
function get_term_meta( $term_id, $key = '', $single = false ) { return get_metadata( 'term', $term_id, $key, $single ); }
Version | Description |
---|---|
4.4.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_term_meta