1

コードのようにコンマで区切られたタグを追加するために投稿 wp_update_post を保存する際に使用する関数を構築しようとしています

//Create the post array
$post = array(
'ID' => 5,
'tags_input' => 'foo,bar,baz');     

// Update the post
wp_update_post($post);

コードは私の function.php テーマで正常に動作しますが、関数を開始して、またはを使用して新しい投稿を作成する投稿またはエディションでのみ実行しadd_filter ('wp_update_post','');たいsave_post('wp_update_post,'');

私はこれをやろうとしました

function add_tags($post) {
    global $post;
    $idpost = $post->ID;
    $tags = 'tag1, tag2, tag3, tag4';

    $post = array(
    'ID' => $idpost,
    'tags_input' => $tags);     

    wp_update_post($post);

    return $post;
}
add_filter( 'wp_update_post', 'add_tags');
save_post( 'wp_update_post', 'add_tags');

間の無限ループに入れ、実行しない

私は何が間違っているのでしょうか

4

1 に答える 1

0

解決済み:

function my_function(){
    if ( ! wp_is_post_revision( $post_id ) ){

        // unhook this function so it doesn't loop infinitely
        remove_action('save_post', 'my_function');

        // update the post, which calls save_post again
        $post = array(
                'ID' => 5,
                'tags_input' => 'foo,bar,baz');  
        wp_update_post( $post );

        // re-hook this function
        add_action('save_post', 'my_function');
    }
}
// hook the function
add_action('save_post', 'my_function');
于 2013-02-09T05:27:27.180 に答える