我正在寫一個文件管理插件,使用類別系統來創建一個模擬文件系統層次結構,我遇到了一些代碼負責遞歸刪除'文件夾'(實際上是類別)。代替返回所有要刪除類別的子類別的代碼,它將返回一個空數組。任何想法爲什麼?get_categories返回一個空數組,當它不應該
//get all child categories
$wk_child_categories = get_categories(array('child_of' => $_POST['wk_ID'], 'orderby' => 'term_group'));
echo " Got the child categories. They are:";
print_r($wk_child_categories);
您是否檢查過以確保$ _POST ['wk_ID']'的值是您期望的值成爲? –
檢查 - 一切正常。 –