wickywills
11/6/2019 - 8:33 AM

Wordpress bulk update posts

/*
Plugin Name: Bulk Update Post
Description: Quick plugin to update posts with whatever you want
Author: James Wills
*/
add_action('init','update_stuff');

function update_stuff(){

    $my_posts = get_posts( array('post_type' => 'product' ) );

    foreach ( $my_posts as $my_post ):

        if($my_post->post_title === 'test-en') {
            $my_post->post_title = 'test-en-updated';
        }

        wp_update_post( $my_post );

    endforeach;
}