日期参数错误。日期的格式应符合该职位的wp标准。下面的代码片段工作正常。
$my_post = array(
\'post_title\' => "post test",
\'post_date\' =>date(\'Y-m-d H:i:s\'),
\'post_content\' => \'This is my post.\',
\'post_status\' => \'publish\',
\'post_author\' => 1,
\'post_category\' => array(1)
);
$post_id= wp_insert_post($my_post);
var_dump($post_id);