Codex tools: Log in
Contents |
Set tags for a post. Every tag that does not already exists will be automatically created. Uses wp_set_post_terms().
<?php wp_set_post_tags( $post_ID, $tags, $append ) ?>
Will return false if $post_id is not an integer or is 0. Will return null otherwise.
To add the tags meaning and life to the current tags of the post with ID 42:
wp_set_post_tags( 42, 'meaning,life', true );
Since: 2.3.0
wp_set_post_tags() is located in wp-includes/post.php.
wp_insert_term wp_delete_term wp_set_post_terms