wordpress插件 - 如何更改发布日期时间?

时间:2012-10-28 23:52:45

标签: plugins wordpress-plugin wordpress

我有一个插件,我需要更改发布日期时间。我应该使用什么WP功能来做到这一点?

感谢

1 个答案:

答案 0 :(得分:5)

您希望wp_update_post($post)使用新的post_date值 - 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);
相关问题