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

Plugins wordpress插件-如何更改发布日期时间?,plugins,wordpress,Plugins,Wordpress,我有一个插件,我需要改变后日期时间。我应该使用什么WP函数来执行此操作 谢谢您可能希望将wp\u update\u post($post)与新的post\u日期一起使用值- $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);

我有一个插件,我需要改变后日期时间。我应该使用什么WP函数来执行此操作


谢谢

您可能希望将
wp\u update\u post($post)
与新的
post\u日期一起使用
值-

$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);