私は、私が投稿ステータスでプログラム的に投稿を作成できるようにするための解決策をWebで探しています:Future(Scheduled Post)。
wp_schedule_eventcronジョブを作成するための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'
);