我正在尝试使用函数添加新帖子wp_inser_post
在我现有的一个类别中,我创建了一个名为categorie
在这种分类法中,我有几个类别,但我无法找到解决方案,帖子正在添加,但没有选择任何类别。
$title = $_POST[\'postTitle\'];
$description = $_POST[\'postContent\'];
$new_post = array(
\'post_title\' => esc_attr(strip_tags($title)),
\'post_content\' => esc_attr(strip_tags($description)),
\'post_type\' => \'proiecte\',
\'post_status\' => \'publish\',
\'post_category\' => array(17,16),
\'taxonomy\' => \'categorie\'
);
$post_id = wp_insert_post($new_post);