wordpress plugin - how to change the post date time?

白昼怎懂夜的黑 提交于 2019-12-01 08:58:53

问题


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

thanks


回答1:


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


来源:https://stackoverflow.com/questions/13114270/wordpress-plugin-how-to-change-the-post-date-time

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!