wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



add_term_meta › WordPress Function

Da4.4.0
Deprecaton/a
add_term_meta ( $term_id, $meta_key, $meta_value, $unique = false )
Parametri: (4)
  • (int) $term_id Term ID.
    Richiesto:
  • (string) $meta_key Metadata name.
    Richiesto:
  • (mixed) $meta_value Metadata value. Must be serializable if non-scalar.
    Richiesto:
  • (bool) $unique Optional. Whether the same key should not be added. Default false.
    Richiesto: No
    Default: false
Ritorna:
  • (int|false|WP_Error) Meta ID on success, false on failure. WP_Error when term_id is ambiguous between taxonomies.
Definito a:
Codex:

Adds metadata to a term.



Sorgenti

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 );
}