On this page
add_term_meta( int $term_id, string $meta_key, mixed $meta_value, bool $unique = false ): int|false|WP_Error
Adds metadata to a term.
Parameters
$term_idint Required-
Term ID.
$meta_keystring Required-
Metadata name.
$meta_valuemixed Required-
Metadata value. Must be serializable if non-scalar.
$uniquebool Optional-
Whether the same key should not be added.
Default:
false
Return
int|false|WP_Error Meta ID on success, false on failure.
WP_Error when term_id is ambiguous between taxonomies.
Source
File: wp-includes/taxonomy.php. View all references
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 );
}
Related
Uses
| Uses | Description |
|---|---|
| wp_term_is_shared() wp-includes/taxonomy.php | Determines whether a term is shared between multiple taxonomies. |
| add_metadata() wp-includes/meta.php | Adds metadata for the specified object. |
| __() wp-includes/l10n.php | Retrieves the translation of $text. |
| WP_Error::__construct() wp-includes/class-wp-error.php | Initializes the error. |
Used By
| Used By | Description |
|---|---|
| wp_xmlrpc_server::set_term_custom_fields() wp-includes/class-wp-xmlrpc-server.php | Set custom fields for a term. |
Changelog
| Version | Description |
|---|---|
| 4.4.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/add_term_meta