如果您没有添加post\\u日期,WordPress会自动用当前日期和时间填充它。
设置其他日期和时间[ Y-m-d H:i:s ]
是正确的结构。下面是您的代码示例。
$postdate = \'2010-02-23 18:57:33\';
$new_post = array(
\'post_title\' => $title,
\'post_content\' => $description,
\'post_date\' => $postdate,
\'post_status\' => \'publish\',
\'post_parent\' => $parent_id,
\'post_author\' => get_current_user_id(),
);
//SAVE THE POST
$pid = wp_insert_post($new_post);