我正在使用wp_insert_term
要添加如下自定义分类法:
wp_insert_term(
$_POST[\'city\'], // the term
\'property-city\', // the taxonomy
array(
\'description\'=> $_POST[\'city\'],
\'slug\' => $_POST[\'city\']
)
);
它确实起到了作用,但它并没有将这个术语与某个post ID联系起来。因此,我的问题是:wp\\u insert\\u term具体做了什么?它只是插入术语吗?如果是,我如何将此术语链接到特定的帖子ID?
最合适的回答,由SO网友:s_ha_dum 整理而成
对wp_insert_term()
仅创建术语。将术语指定给后期使用wp_set_object_terms()
wp_set_object_terms( $object_id, $terms, $taxonomy, $append );