Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Joomla 2.5,每个菜单项都有一个“注释”字段,通常仅用作后端的描述,是否可以在我的网站前端显示该内容?最好是通过覆盖显示它...
您可以使用菜单项 id 获取“注释”字段
$menuitemid = JRequest::getInt('Itemid'); $db =& JFactory::getDBO(); $query = "SELECT note FROM #__menu WHERE published = 1 and id = '".$menuitemid."' "; $db->setQuery($query); $note = $db->loadResult();