WordPress插件 - 如何改变发布日期的时间?(wordpress plugin - how

2019-07-03 10:03发布

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

谢谢

Answer 1:

您可能需要使用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);


文章来源: wordpress plugin - how to change the post date time?