我试图插入类别
$apples = "granny smith"
作为新帖子的一部分。
我可以使用以下脚本轻松创建带有 TAG 的新帖子:
$my_post = array(
'post_title' => $title,
'post_content' => $content,
'post_status' => 'publish',
'post_author' => 1,
'tags_input' => $apples,
'post_type' => 'post'
);
wp_insert_post( $my_post );
但出于某种原因,尽管 WP 法典列出
'post_category'
对于类别,以下代码不会创建新类别“granny smith”,而是将新帖子输入为“未分类”:
$my_post = array(
'post_title' => $title,
'post_content' => $content,
'post_status' => 'publish',
'post_author' => 1,
'post_category' => $apples
'post_type' => 'post'
);
wp_insert_post( $my_post );
有人可以帮我写代码吗?我哪里错了?