1

我目前正在使用 WordPress 自定义 Walker 来自定义我的导航。它当前生成此导航:

<nav class="nav-top clearfix">
<ul class="clearfix">
<li id="menu-item-69" class="current_page_item"><a href="#">test1</a></li>
<li id="menu-item-68"><a href="#">test2</a></li>
<li id="menu-item-67"><a href="#">test3</a></li>
<li id="menu-item-66"><a href="#">test4</a></li>
<li id="menu-item-65"><a href="#">test5</a></li>
<li id="menu-item-64"><a href="#">test6</a></li>
</ul>
</nav>

当我单击 test2 时,它会将 current_page_item 类应用于它。

一切正常,但是我也想在页脚中使用相同的导航。如果我这样做,那么我会因为 li id 而出现验证错误。如何将 li id 更改为 li class ?

这是我的自定义沃克:

class My_Walker extends Walker_Nav_Menu {
  function start_el(&$output, $item, $depth, $args)
  {
       global $wp_query;
       $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

       $class_names = $value = '';

       $classes = empty( $item->classes ) ? array() : (array) $item->classes;

       $current_indicators = array('current_page_item');

       $newClasses = array();

       foreach($classes as $el){
           //check if it's indicating the current page, otherwise we don't need the class
           if (in_array($el, $current_indicators)){ 
               array_push($newClasses, $el);
           }
       }

       $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $newClasses), $item ) );
       if($class_names!='') $class_names = ' class="'. esc_attr( $class_names ) . '"';


       $output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';

       $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        ) .'"' : '';

       if($depth != 0)
       {
           //children stuff, maybe you'd like to store the submenu's somewhere?
       }

       $item_output = $args->before;
       $item_output .= '<a'. $attributes .'>';
       $item_output .= $args->link_before .apply_filters( 'the_title', $item->title, $item->ID );
       $item_output .= '</a>';
       $item_output .= $args->after;

       $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
       }
}
4

1 回答 1

0

如果您还没有弄清楚,这就是您应该做的:

替换$newClasses = array();为:

$newClasses = array( 'menu-item-'. $item->ID );

然后替换以下行:

$output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';

和:

$output .= $indent . '<li' . $value . $class_names .'>';
于 2012-11-23T11:17:20.763 回答