我用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',
]
);
但是和吉德没有填补。我在做什么错了?
答案 0 :(得分:0)
您使用的是Corcel错误。
在创建内容之前和之后,WordPress会执行很多名为Hook的钩子和其他过程,而使用Corcel时则不可用。 Corcel是只读的。如果您要创建内容,我建议您使用REST API端点such as this one直接与WordPress网站对话。