如何在自定义分类法下为帖子添加类别?

时间:2019-07-08 23:20:01

标签: php wordpress

我注册了一个自定义分类法,我想通过PHP函数向该帖子添加一个类别。我尝试添加到帖子中的类别是根据自定义分类法注册的。

我尝试使用wp_set_object_termswp_set_post_categorieswp_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

0 个答案:

没有答案