您使用的功能“menu_navigation_links”仅显示单个级别的链接。您最好查看菜单块模块(https://www.drupal.org/project/menu_block)或使用以下示例的功能:
/**
* Get a menu tree from a given parent.
*
* @param string $path
* The path of the parent item. Defaults to the current path.
* @param int $depth
* The depth from the menu to get. Defaults to 1.
*
* @return array
* A renderable menu tree.
*/
function _example_landing_get_menu($path = NULL, $depth = 1) {
$parent = menu_link_get_preferred($path);
if (!$parent) {
return array();
}
$parameters = array(
'active_trail' => array($parent['plid']),
'only_active_trail' => FALSE,
'min_depth' => $parent['depth'] + $depth,
'max_depth' => $parent['depth'] + $depth,
'conditions' => array('plid' => $parent['mlid']),
);
return menu_build_tree($parent['menu_name'], $parameters);
}
此函数将返回从给定 url 开始的给定深度的菜单树。
以下代码将生成一个子菜单,以当前页面为父页面,并显示深度为 2 的子项目。
$menu = _example_landing_get_menu(NULL, 2);
print render($menu);