admin管理员组

文章数量:1420625

I have a custom taxonomy that I would like to update on posts using a PHP function. An example of what I am trying to achieve is the following:

Array
(
    [0] => WP_Term Object
        (
            [term_id] => 183
            [name] => Spotlight
            [slug] => spotlight
            [term_group] => 0
            [term_taxonomy_id] => 183
            [taxonomy] => deals_tiers
            [description] => 
            [parent] => 0
            [count] => 5
            [filter] => raw
            [term_order] => 0
        )    
)

I am trying to set this on posts that have no data in these fields. This can be achieved in the backend by checking the "Spotlight" checkbox but I would like to do this via a function. Any help would be greatly appreciated.

本文标签: functionsI am trying to set post terms to a custom taxonomy