自定义Walker菜单类

时间:2013-07-05 作者:user31344

嘿,伙计们,我正在自定义一个walker类,以便将自定义类添加到导航级别。基本上有三个级别的导航。

<ul  *custom class*> 
 <li  *custom class*> 
  <ul *custom class*> 
   <li> </li>
   <li> </li>
  <ul>
 </li>
 <li> </li>
<ul> 
当1级(或2,3级)LI后面有ul时,如何向该LI和下面的ul添加自定义类?基本上,这种模式会在其他级别重复。

谢谢

1 个回复
最合适的回答,由SO网友:Shahinul Islam 整理而成

我认为您正在寻找解决方案:

http://shinraholdings.com/62/custom-nav-menu-walker-function/

在调用WP菜单的位置添加此代码。



wp_nav_menu( array(
    \'theme_location\'    => \'navigation_menu_primary\',
    \'container\'     => \'div\',
    \'container_id\'      => \'top-navigation-primary\',
    \'conatiner_class\'   => \'top-navigation\',
    \'menu_class\'        => \'menu main-menu menu-depth-0 menu-even\', 
    \'echo\'          => true,
    \'items_wrap\'        => \'%3$s\',
    \'depth\'         => 10, 
    \'walker\'        => new themeslug_walker_nav_menu
) ); // thanks nick


Add this code in functions.php file, you can adjust the class names from the class\'s function code.


class themeslug_walker_nav_menu extends Walker_Nav_Menu {

// add classes to ul sub-menus
function start_lvl( &$output, $depth ) {
    // depth dependent classes
    $indent = ( $depth > 0  ? str_repeat( "\\t", $depth ) : \'\' ); // code indent
    $display_depth = ( $depth + 1); // because it counts the first submenu as 0
    $classes = array(
        \'sub-menu\',
        ( $display_depth % 2  ? \'menu-odd\' : \'menu-even\' ),
        ( $display_depth >=2 ? \'sub-sub-menu\' : \'\' ),
        \'menu-depth-\' . $display_depth
        );
    $class_names = implode( \' \', $classes );

    // build html
    $output .= "\\n" . $indent . \'\' . "\\n";
}

// add main/sub classes to li\'s and links
 function start_el( &$output, $item, $depth, $args ) {
    global $wp_query;
    $indent = ( $depth > 0 ? str_repeat( "\\t", $depth ) : \'\' ); // code indent

    // depth dependent classes
    $depth_classes = array(
        ( $depth == 0 ? \'main-menu-item\' : \'sub-menu-item\' ),
        ( $depth >=2 ? \'sub-sub-menu-item\' : \'\' ),
        ( $depth % 2 ? \'menu-item-odd\' : \'menu-item-even\' ),
        \'menu-item-depth-\' . $depth
    );
    $depth_class_names = esc_attr( implode( \' \', $depth_classes ) );

    // passed classes
    $classes = empty( $item->classes ) ? array() : (array) $item->classes;
    $class_names = esc_attr( implode( \' \', apply_filters( \'nav_menu_css_class\', array_filter( $classes ), $item ) ) );

    // build html
    $output .= $indent . \'ID . \'" class="\' . $depth_class_names . \' \' . $class_names . \'">\';

    // link attributes
    $attributes  = ! empty( $item->attr_title ) ? \' title="\'  . esc_attr( $item->attr_title ) .\'"\' : \'\';
    $attributes .= ! empty( $item->target )     ? \' target="\' . esc_attr( $item->target     ) .\'"\' : \'\';
    $attributes .= ! empty( $item->xfn )        ? \' rel="\'    . esc_attr( $item->xfn        ) .\'"\' : \'\';
    $attributes .= ! empty( $item->url )        ? \' href="\'   . esc_attr( $item->url        ) .\'"\' : \'\';
    $attributes .= \' class="menu-link \' . ( $depth > 0 ? \'sub-menu-link\' : \'main-menu-link\' ) . \'"\';

    $item_output = sprintf( \'%1$s%3$s%4$s%5$s%6$s\',
        $args->before,
        $attributes,
        $args->link_before,
        apply_filters( \'the_title\', $item->title, $item->ID ),
        $args->link_after,
        $args->after
    );

    // build html
    $output .= apply_filters( \'walker_nav_menu_start_el\', $item_output, $item, $depth, $args );
}
}

结束

相关推荐

涉及AJAX的自定义Walker导航问题

我在一个不是我写的主题中使用ajax。这个ajax点击链接,然后将该页面滑入视图。它工作得很好。为了做到这一点,我必须为wp\\U nav\\U菜单定制一个walker,在链接中添加两个字符,以便我的链接在nav中看起来像这样 http://my-site.com/#!/post-1 我的问题是,当查看单个页面时。我必须让WordPress重新加载页面才能获得单个帖子。那么我的链接会是这样的 http://my-site.com/?p=post-1 因此,当我将鼠标悬停在导航上以返回到