Corcel-如何将特色图片附加到Post

时间:2019-05-14 12:22:27

标签: wordpress laravel

我正在使用 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);
  1. 如何在此帖子中添加特色图片?
  2. 我该如何安排时间?

0 个答案:

没有答案
相关问题