add_term_meta( int $term_id, string $meta_key, mixed $meta_value, bool $unique = false )
Adds metadata to a term.
Parameters Parameters
- $term_id
-
(int) (Required) Term ID.
- $meta_key
-
(string) (Required) Metadata name.
- $meta_value
-
(mixed) (Required) Metadata value. Must be serializable if non-scalar.
- $unique
-
(bool) (Optional) Whether the same key should not be added.
Default value: false
Return Return
(int|false|WP_Error) Meta ID on success, false on failure. WP_Error when term_id is ambiguous between taxonomies.
Source Source
File: wp-includes/taxonomy.php
1263 1264 1265 1266 1267 1268 1269 | function add_term_meta( $term_id , $meta_key , $meta_value , $unique = false ) { if ( wp_term_is_shared( $term_id ) ) { return new WP_Error( 'ambiguous_term_id' , __( 'Term meta cannot be added to terms that are shared between taxonomies.' ), $term_id ); } return add_metadata( 'term' , $term_id , $meta_key , $meta_value , $unique ); } |
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Usage
add_term_meta(
$term_id
,
$meta_key
,
$meta_value
,
$unique
);
Example
Adds a new custom field with a key name ‘my_term_key’ and value as ‘new_term’
add_term_meta( 12,
"my_term_key"
,
'new_term'
);