如何使用Larcel的Corcel添加后塞到Wordpress

时间:2018-06-22 11:39:03

标签: wordpress laravel

我用corcel做Laravel。

$item = \Corcel\Model\Post::create(
            [
                'post_title' => $product['name'],
                'post_name' => Str::slug($product['name']),
                'guid' => 'http://domain/product/' . Str::slug($product['name']) . '/',
                'post_content' => $product['description'],
                'post_date' => date('Y-m-d H:i:s'),
                'post_type' => 'product',

            ]
        );

但是和吉德没有填补。我在做什么错了?

1 个答案:

答案 0 :(得分:0)

您使用的是Corcel错误。

在创建内容之前和之后,WordPress会执行很多名为Hook的钩子和其他过程,而使用Corcel时则不可用。 Corcel是只读的。如果您要创建内容,我建议您使用REST API端点such as this one直接与WordPress网站对话。