wp_add_object_terms

函数
wp_add_object_terms ( $object_id, $terms, $taxonomy )
参数
  • (int) $object_id The ID of the object to which the terms will be added.
    Required:
  • (string|int|array) $terms The slug(s) or ID(s) of the term(s) to add.
    Required:
  • (array|string) $taxonomy Taxonomy name.
    Required:
返回值
  • (array|WP_Error) Term taxonomy IDs of the affected terms.
定义位置
相关方法
wp_get_object_termswp_set_object_termswp_remove_object_termsadd_object_pagewp_add_post_tags
引入
3.6.0
弃用
-

wp_add_object_terms: 这个函数在指定的分类法中为一个对象(文章、页面、自定义文章类型)添加一个或多个术语: 这个函数需要三个参数:对象ID,要添加的术语或术语阵列,以及分类法名称: 该函数将检查术语是否存在,如果不存在则创建它们。然后,它将术语ID添加到对象的分类法术语中: 这个函数对于以编程方式将术语分配给对象很有用。

添加与给定对象相关的术语(s)。

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

常见问题

FAQs
查看更多 >