我每天都有很多帖子要发表。现在,我正在考虑安排我保存为草稿的所有帖子。因此,我尝试创建一个自定义的后期调度程序。这是我试过的,
$time = strtotime(\'+5 min\');
$args = array(\'post_type\' => \'post\',\'post_status\' => \'draft\');
$draft_posts = get_posts( $args );
foreach($draft_posts as $posts) {
$my_post = array(
\'ID\' => $posts->ID,
\'post_date\' => date(\'Y-m-d H:i:s\', $time),
\'post_status\' => \'future\');
$my_post->edit_date = true;
wp_update_post( $my_post );
$time += 5400; // every 1.5 hr
}
我一运行这个程序,所有草稿就会立即同时发布,而不是每隔1.5小时发布一次。谁能告诉我问题出在哪里吗?