user1190646
user1190646

Reputation:

wordpress plugin - how to change the post date time?

I have a plugin that I need to change the post date time. What WP function should I use to do this?

thanks

Upvotes: 2

Views: 4226

Answers (1)

doublesharp
doublesharp

Reputation: 27667

You would want to use wp_update_post($post) with a new post_date value - http://codex.wordpress.org/Function_Reference/wp_update_post

$mypost = array();
$mypost['ID'] = 111; // the post ID you want to update
$mypost['post_date'] = $your_date; // uses 'Y-m-d H:i:s' format
wp_update_post($mypost);

Upvotes: 4

Related Questions