我的插件在两个wordpress网站上。“主”站点向子站点发送帖子。子站点通过请求管理帖子来接收帖子。php,并按计划(未来)插入,在一段时间后以新标题发布。每次“过程”起作用时,收到并插入帖子,标题都会更改,但。。。并非每次帖子都按计划设置。就像30-40%的案例一样,这篇文章只是“发布”。这很奇怪,我不知道如何找到它,是什么导致它。。。?
以下是接收和插入帖子的示例代码:
$post = array(
\'post_title\' => $newTitle,
\'post_date\' => date(\'Y-m-d H:i:s\', strtotime(\'+30 seconds\'),
\'post_date_gmt\' => gmdate(\'Y-m-d H:i:s\', strtotime(\'+30 seconds\'),
\'post_content\' => $_POST[\'post_content\'],
\'post_status => \'future\'
);
wp_insert_post( $post )