I know it seems like a simple operation, but I can't find any resource or documentation that explains how to programmatically add and remove tags to a post using the post ID.

Below is a sample of what I'm using, but it seems to overwrite all the other tags...

function addTerm($id, $tax, $term) {

    $term_id = is_term($term);
    $term_id = intval($term_id);
    if (!$term_id) {
        $term_id = wp_insert_term($term, $tax);
        $term_id = $term_id['term_id'];
        $term_id = intval($term_id);
    }
    $result =  wp_set_object_terms($id, array($term_id), $tax, FALSE);

    return $result;
}
link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

You need to first call get_object_terms to get all the terms that exist already.

Updated code

function addTerm($id, $tax, $term) {

    $term_id = is_term($term);
    $term_id = intval($term_id);
    if (!$term_id) {
        $term_id = wp_insert_term($term, $tax);
        $term_id = $term_id['term_id'];
        $term_id = intval($term_id);
    }

    // get the list of terms already on this object:
    $terms = wp_get_object_terms($id, $tax)
    $terms[] = $term_id;

    $result =  wp_set_object_terms($id, $terms, $tax, FALSE);

    return $result;
}
link|improve this answer
FYI: is_term has been changed to term_exists – Brad Jul 10 '10 at 4:35
3  
Where is the "remove tag" part of this? – ajkochanowicz Jan 25 at 20:42
See wordpress.stackexchange.com/a/49256/9142 for how I deleted tags. – Thr4wn May 11 at 21:25
feedback

Try using wp_add_post_tags($post_id,$tags);

link|improve this answer
feedback

Here is how I do it:

$tag="This is the tag"
$PostId=1; //
wp_set_object_terms( $PostId, array("$TAG"), 'post_tag', true );

*Note: wp_set_object_terms() expects the second parameter to be an array.*

link|improve this answer
feedback

What if you dont know the post id? You just want to add the tag to all new posts created?

When using the WordPress API function add_action('publish_post', 'your_wp_function');, the function you are calling automatically gets the post_id injected as the first argument:

function your_wp_function($postid) {
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.