我注册了一个自定义分类法,我想通过PHP函数向该帖子添加一个类别。我尝试添加到帖子中的类别是根据自定义分类法注册的。
我尝试使用wp_set_object_terms
,wp_set_post_categories
和wp_set_post_terms
无济于事。
register_taxonomy('deals_tiers', array( 'deals' ), array(
'label' => 'Deals Tiers',
'hierarchical' => true,
'public' => true,
'query_var' => true,
'show_ui' => true,
'show_in_rest' => true,
'rest_base' => 'deals_tiers',
'rest_controller_class' => 'WP_REST_Terms_Controller',
) );
我希望帖子中添加类别'Spotlight'
,并且我已将聚光灯注册为deals_tier
,id为183