为什么hook_menu_link_alter()不起作用?


7

我想扩展主题的主要链接,因此将以下代码放入自定义模块中。

function mymodulename_menu_link_alter(&$item, $menu) {
  if ($item['menu_name'] == 'primary-links') {
    $item['expanded'] = 1;
  }
}

在page.tpl.php中,我使用print theme('links', $primary_links),但是主要链接没有扩展。为什么?

Answers:




By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.