我有一個類別ID,並不想顯示所有子類別。我應該在Joomla中做這個嗎?Joomla獲取自定義父類別的子類別
我已經試過以下
$catID = JRequest::getVar('id');
$categories = JCategories::getInstance('Content');
$cat = $categories->get($catID);
$children = JCategoryNode::getChildren($cat);
printObject($children);
但它不工作。
什麼是$孩子?你不要在顯示的代碼中的任何地方定義它。 –
@PatrickEvans對不起,我忘了一行$ children = JCategoryNode :: getChildren($ cat); (編輯代碼) –