• Does anyone know of an easy way to change the date of a scheduled post?

    I have 150 posts that need the date changed and I really do not want to have to change each one.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • I don’t know of a way to change them all at once. The quickest way is just to go to your “Posts” page in the dashboard and use “Quick Edit”.

    you can try like this
    $my_post = array(
    ‘ID’ => 78,
    ‘post_date’ => ‘2013-08-08 12:12:12’,
    ‘post_status’ => ‘future’ );

    // Update the post into the database
    wp_update_post( $my_post );

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change scheduled posting date’ is closed to new replies.