我有一个脚本可以自动生成帖子,并使用insert\\u post()来实现。运行脚本可以正常工作,但在尝试运行insert\\u post()后,经过几次循环(运行insert\\u post())后,脚本将在没有任何警告或错误的情况下结束。最后一篇文章已经完成并显示在数据库中,但函数insert\\u post甚至没有返回id。脚本刚刚结束。我不知道为什么。
我检查了一下,所有的输入都很好,但几次之后就停止了。这也不是超时问题,因为我在没有超时的情况下运行。
昨天没有发生,但现在发生了。我没有改变剧本。
for(...) { $new_post = array(
\'post_content\' => $content,
\'post_title\' => $title,
\'post_status\' => \'publish\',
);
$post_id = wp_insert_post($new_post); }
wp\\u insert\\u post从不返回,脚本结束