Answers for "Comment catégoriser et tagger automatiquement les messages dans WordPress"

PHP
0

Comment catégoriser et tagger automatiquement les messages dans WordPress

<?php
add_action( 'wp_insert_post', 'update_post_terms' );
function update_post_terms( $post_id ) {
    if ( $parent = wp_is_post_revision( $post_id ) )
        $post_id = $parent;
    $post = get_post( $post_id );
    if ( $post->post_type != 'post' )
        return;
    // add a tag
    wp_set_post_terms( $post_id, 'new tag', 'post_tag', true );
    // add a category
    $categories = wp_get_post_categories( $post_id );
    $newcat = get_term_by( 'name', 'Some Category', 'category' ); 
    array_push( $categories, $newcat->term_id );
    wp_set_post_categories( $post_id, $categories );
}
?>
Posted by: Guest on September-29-2021

Code answers related to "Comment catégoriser et tagger automatiquement les messages dans WordPress"

Browse Popular Code Answers by Language