公告
财富商城
积分规则
提问
发文
2019-02-19 12:18发布
女痞
I have a plugin that I need to change the post date time. What WP function should I use to do this?
thanks
You would want to use wp_update_post($post) with a new post_date value - http://codex.wordpress.org/Function_Reference/wp_update_post
wp_update_post($post)
post_date
$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);
最多设置5个标签!
You would want to use
wp_update_post($post)
with a newpost_date
value - http://codex.wordpress.org/Function_Reference/wp_update_post