请帮帮我, 我正在使用wordpress主题制作一个在线购物网站,我遇到了制作大型菜单的问题,我有以下HTML代码。 我尝试过使用其他来源的nav walker,但结果不符合我创建的html代码。
DbConnection
答案 0 :(得分:0)
如果您使用的是WordPress,则可以通过名为Megamenu的插件https://wordpress.org/plugins/megamenu/轻松创建Mega菜单。 如果您在此插件的帮助下创建Mega菜单,它将节省大量时间
答案 1 :(得分:0)
问题是如何制作wp nav walker,我试过这个步行者导航代码
<?php
$megamenu = 0;
$count=0;
class nav_walker_megamenu extends Walker_Nav_Menu {
public function start_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
if($depth == 0) $output .= "\n$indent<div class=\"mega-menu-page\">
$indent<ul class=\"mega-sub-list\">\n";
else $output .= "\n$indent<ul class=\"sub-menu\">\n";
}
public function end_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat("\t", $depth);
if($depth == 0) $output .= "$indent</ul>\n
$indent</div>\n";
else $output .= "$indent</ul>\n";
}
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $megamenu;
$megamenu++;
global $count;
$count++;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$class_names = '';
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$classes[] = 'menu-item-' . $item->ID;
if ($megamenu == 4) {
$output .= "\n$indent</ul>$indent<ul class=\"drop-dow\">\n";
$megamenu = 1;
}
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
$id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );
$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
$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 );
$attributes = '';
foreach ( $atts as $attr => $value ) {
if ( ! empty( $value ) ) {
$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
$attributes .= ' ' . $attr . '="' . $value . '"';
}
}
if ($item->menu_item_parent == 0) $megamenu = 0;
$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;
if ($megamenu == 4) $megamenu = 0;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
} // Walker_Nav_Menu
&#13;
使用代码nav walker,这些结果与我上面创建的html代码不一致。