我正在尝试弄清楚如何将span标记添加到自定义菜单中的某个菜单链接。我只需要在自定义菜单链接中的一个链接上。猜测一个预处理函数并试着theme_menu_item_link()
没有运气,但似乎没有被调用。
答案 0 :(得分:6)
找到下面的解决方案。
请注意,如果您正在使用Superfish模块,theme_menu_link()
在这种情况下无法工作,请改用theme_superfish_menu_item_link
。
Drupal 7
/*
* Implements theme_menu_link().
*/
function THEME_menu_link(array $variables) {
$element = $variables['element'];
$sub_menu = '';
if ($element['#below']) {
$sub_menu = drupal_render($element['#below']);
}
$element['#localized_options']['html'] = TRUE;
$linktext = '<span class="tab-inner">' . $element['#title'] . '</span>';
$output = l($linktext, $element['#href'], $element['#localized_options']);
return '<li' . drupal_attributes($element['#attributes']) . '>' . $output . $sub_menu . "</li>\n";
}
Drupal 7(使用Superfish)
/*
* Implements theme_superfish_menu_item_link().
* Theme a superfish menu item link,
* to override menu item to insert span tags
*/
function THEME_superfish_menu_item_link(array $variables) {
$menu_item = $variables['menu_item'];
$link_options = $variables['link_options'] + array('html' => TRUE);
$linktext = '<span class="tab-inner">' . $menu_item['link']['title'] . '</span>';
return l($linktext, $menu_item['link']['link_path'], $link_options);
}
定义上述钩子后,清除缓存以重建主题注册表。
如果符合@weaveoftheride的建议,请确保启用使用主题功能进行超链接和使用菜单项的主题功能< / em>在设置中。通常,默认情况下应启用这些。
Drupal 6 (仅供参考)
/*
* Implements theme_menu_item_link().
*/
function THEME_menu_item_link($link) {
if (empty($link['localized_options'])) {
$link['localized_options'] = array();
}
$link['localized_options'] += array('html'=>true);
return l('<span>'.$link['title'].'</span>', $link['href'], $link['localized_options']);
}
注意:请勿忘记在上述所有代码中将THEME
替换为您主题的计算机名称。
答案 1 :(得分:1)
找到答案!需要使用theme_menu_link()
:
function theme_menu_link(array $variables) {
$element = $variables['element'];
$sub_menu = '';
if ($element['#below']) {
$sub_menu = drupal_render($element['#below']);
}
$output = l($element['#title'], $element['#href'], $element['#localized_options']);
return '<li' . drupal_attributes($element['#attributes']) . '>' . $output . $sub_menu . "</li>\n";
}
http://api.drupal.org/api/drupal/includes%21menu.inc/function/theme_menu_link/7
在那里,我可以找到我正在寻找的项目并相应地进行调整。