我正在网络上搜索任何解决方案,这些解决方案允许我以编程方式创建一篇帖子,帖子状态为:未来(计划帖子)。
我正在通读wp_schedule_event 用于创建cron作业的WordPress函数。
提前谢谢。
我正在网络上搜索任何解决方案,这些解决方案允许我以编程方式创建一篇帖子,帖子状态为:未来(计划帖子)。
我正在通读wp_schedule_event 用于创建cron作业的WordPress函数。
提前谢谢。
我在搜索其他stackoverflow答案时找到了我的答案,下面是我添加的代码。
$postdate = date(\'Y-m-d H:i:s\',strtotime(\'+20 minutes\'));
$postdate_gmt = gmdate(\'Y-m-d H:i:s\',strtotime($postdate));
$post = array(
\'post_date_gmt\' => $postdate_gmt,
\'post_date\' => $postdate,
\'edit_date\' => \'true\'
);