我正在使用 Corcel 通过Laravel(https://github.com/corcel/corcel)管理我的wordpress。
创建帖子时,我想在该帖子上链接一个特色图片,并将其安排在选定的日期。
我目前正在创建这样的帖子:
$post_wordpress = new \Corcel\Model\Post;
$time = Carbon::now();
$data = [
'post_content' => 'CONTENT',
'post_title' => 'TITLE',
'post_status' => 'future', //For the schedule
'post_type' => 'post',
'post_date' => $time,
'post_date_gmt' => $time,
'post_modified' => $time,
'post_modified_gmt' => $time,
'post_name' => 'TITLE',
];
$post = $post_wordpress::create($data);