从帖子中删除词语时,删除包含零个帖子的词语

时间:2019-01-12 04:36:07

标签: wordpress

从帖子中删除字词时,请删除包含零个帖子的字词。 更新帖子时,请删除包含零个帖子的字词。

我已经尝试了下面的代码,但是没有用。.

add_filter('wp_remove_object_terms','delete_unused_terms');
function delete_unused_terms($term_ids, $taxonomy) {
    foreach ( $term_ids as $term_id ) {
        $term = get_term($term_id, $taxonomy);
        $term_count = $term->count;
        if ($term_count<1) {
            wp_delete_term($term_id, $taxonomy);
        }
    }
}

1 个答案:

答案 0 :(得分:0)

很遗憾,没有function addCandidate(string memory name) public { Candidate memory newCandidate = Candidate(candidateCount, name, 0); candidates.push(newCandidate); } 过滤器。

但是有一个动作wp_remove_object_terms;

请尝试使用

deleted_term_relationships