谷歌搜索并乱搞了2天后,我已经走到了死胡同寻找救援人员。 :-) 我希望得到的类别与它们在Joomla后端的Category Manager中出现的顺序相同。
$db =& JFactory::getDBO();
$query = "select * from #__categories where extension='com_content' and title!='Uncategorised' order by parent_id,title,lft";
$db->setQuery($query);
$db->query();
$hm = $db->getNumRows();
$rows = $db->loadRowList();
我在DDL中插入了值,但是他们的订单有些混乱。请问有什么建议吗?非常感谢。
答案 0 :(得分:3)
按lft
排序。这是在后端的类别管理器中完成的:-)。
请参阅/administrator/components/com_categories/models/categories.php