好的,我可以从wp下拉列表中选择。此选项是一个类别。我使用此类别查找它的家长。这似乎输出了一个字符串。
此字符串应转换为数组。然后我需要遍历数组,并将类别名称更改为类别ID。
但出于某种原因,这似乎不起作用。我可能做错了什么?我把不起作用的地方注释掉了。
(此数组用于post\\u类别以创建新的帖子。)
//Create array
$categoriesArray = [];
//Get choice from wp-dropdown
$selected_val = $_POST[\'cat\'];
//Get parents from choice divided by (this seems to output a string)
$parents = get_category_parents( $selected_val, true, \',\' );
/*
//Make array from string
$categoriesArray = explode(",",$parents);
for ($i = 0; $i < count($categoriesArray); $i++) {
{
$categoriesArray[$i] = get_cat_ID($categoriesArray[$i]);
}
*/
//the array should look something like this.
//$categoriesArray = ["21","44"];