How to get specific menu items from joomla?

后端 未结 9 2010
孤独总比滥情好
孤独总比滥情好 2020-12-08 21:51

This question is bit specific for Joomla.

I have a main menu consisting of:

Home|About US|Privacy Policy|Portfolio|Contacts US.

Each menu it

9条回答
  •  独厮守ぢ
    2020-12-08 21:54

    $app = JFactory::getApplication();
    $menu = $app->getMenu();
    $items = $menu->getItems('menutype', 'mainmenu');
    

提交回复
热议问题