wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_add_object_terms › WordPress Function

Depuis3.6.0
Dépréciéen/a
wp_add_object_terms ( $object_id, $terms, $taxonomy )
Paramètres: (3)
  • (int) $object_id The ID of the object to which the terms will be added.
    Requis: Oui
  • (string|int|array) $terms The slug(s) or ID(s) of the term(s) to add.
    Requis: Oui
  • (array|string) $taxonomy Taxonomy name.
    Requis: Oui
Retourne:
  • (array|WP_Error) Term taxonomy IDs of the affected terms.
Défini(e) dans:
Codex:

Adds term(s) associated with a given object.



Source

function wp_add_object_terms( $object_id, $terms, $taxonomy ) {
	return wp_set_object_terms( $object_id, $terms, $taxonomy, true );
}