你的回答有错误。一个是语法(slug=>parent category line后没有逗号),出于某种原因,$parent[\'temr\\u id\']没有工作,尽管它在法典中看起来是正确的。。。
但它确实把我引向了正确的方向,我最终成功了,所以谢谢你!
我的解决方案(可能有一种更简单的方法):
$parentTitle = \'category name\';
$parentSlug = str_replace(\' \', \'\', $parentTitle);
$parent = wp_set_object_terms($postID, $parentTitle, \'category\', array(\'slug\' => $parentSlug));
$parentID = get_cat_id($parent);
$childTitle = \'category name\';
$childSlug = str_replace(\' \', \'\', $childTitle);
$child = wp_set_object_terms($postID, $childTitle, \'category\', array(\'slug\' => $childSlug, \'parent\' => $parentID));
再次感谢你为我指明了正确的方向!