发布时我需要将录制时间推迟一段时间。
$time += 5400;
$my_post = array(
'ID' => get_the_ID(),
'post_date' => date('Y-m-d H:i:s', $time),
'post_status' => 'future' );
$my_post->edit_date = true;
wp_update_post( $my_post );
但是代码不起作用 如何解决?