获得了一个工作函数,但不确定它是否是最佳解决方案。
我使用了一个定制的助行器:
class Custom_Walker_Nav_Menu extends Walker_Nav_Menu {
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $wp_query;
$indent = ( $depth ) ? str_repeat( "\\t", $depth ) : \'\';
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$classes[] = \'menu-item-\' . $item->ID;
$class_names = join( \' \', apply_filters( \'nav_menu_css_class\', array_filter( $classes ), $item, $args, $depth ) );
$class_names = $class_names ? \' class="\' . esc_attr( $class_names ) . \'"\' : \'\';
$id = apply_filters( \'nav_menu_item_id\', \'menu-item-\'. $item->ID, $item, $args, $depth );
$id = $id ? \' id="\' . esc_attr( $id ) . \'"\' : \'\';
/**
* This counts the $menu_items and wraps if there are more then 5 items the
* remaining items into an extra <ul>
*/
global $menu_items;
$menu_items = substr_count($output,\'<li\');
if ($menu_items == 4) {
$output .= \'<li class="tooltip"><span>...</span><ul class="tooltip-menu">\';
}
$output .= $indent . \'<li\' . $id . $class_names .\'>\';
$atts = array();
$atts[\'title\'] = ! empty( $item->attr_title ) ? $item->attr_title : \'\';
$atts[\'target\'] = ! empty( $item->target ) ? $item->target : \'\';
$atts[\'rel\'] = ! empty( $item->xfn ) ? $item->xfn : \'\';
$atts[\'href\'] = ! empty( $item->url ) ? $item->url : \'\';
$atts = apply_filters( \'nav_menu_link_attributes\', $atts, $item, $args, $depth );
$attributes = \'\';
foreach ( $atts as $attr => $value ) {
if ( ! empty( $value ) ) {
$value = ( \'href\' === $attr ) ? esc_url( $value ) : esc_attr( $value );
$attributes .= \' \' . $attr . \'="\' . $value . \'"\';
}
}
$item_output = $args->before;
$item_output .= \'<a\'. $attributes .\'>\';
$item_output .= $args->link_before . apply_filters( \'the_title\', $item->title, $item->ID ) . $args->link_after;
$item_output .= \'</a>\';
$item_output .= $args->after;
$output .= apply_filters( \'walker_nav_menu_start_el\', $item_output, $item, $depth, $args );
}
}
显示实际菜单的功能如下:
<?php
wp_nav_menu( array( \'container\' => false, \'theme_location\' => \'navigation\', \'fallback_cb\' => \'custom_menu\', \'walker\' =>new Custom_Walker_Nav_Menu ) );
global $menu_items;
// This adds the closing </li> and </ul> if there are more then 4 items in the menu
if ($menu_items > 4) {
echo "</li></ul>";
}
?>
我声明了全局变量$menu\\u items,并使用它来显示结束
<li>
和
<ul>
-标签。很可能在定制助行器中也能做到这一点,但我没有找到在哪里以及如何做到这一点。
Two problems:1、如果菜单中只有5个项目,它会将最后一个项目也包装成一个虽然没有必要的项目。
如果用户实际为主题位置分配了一个菜单,那么它就可以工作,如果wp\\u nav\\u菜单显示了回退功能,那么助行器不会启动