我想添加一個帖子到分類下的類別。我使用的代碼是:WordPress的,添加帖子到自定義分類的分類
$user = get_user_by('email', $_POST['user']);
$id = array(
'post_title' => $_POST['title'],
'post_content' => $_POST['content'],
'post_date' => date('Y-m-d H:i:s'),
'post_author' => $user->ID,
'taxonomy' => ('cate'),
'post_type' => 'ad',
'post_category' => array(425),
'post_status' => 'publish',
);
$user_id = wp_insert_post($id);
if (! is_wp_error($user_id)) {
$odgovor["success"] = 1;
}
的後加入,但它的類別下增加了「未分類」,而不是根據所需的類別ID這個系統正常工作時不使用自定義後類型(在這種情況下分類。 '美食')
任何想法
你應該問這個問題http://wordpress.stackexchange.com/ – bernie