很多网页设计都会给菜单之间加一个分割线,最常见的就是 「|」 了,如图:

 

我们需要的是,每个菜单项之间有一个分隔符。传统的方法是配置 WordPress 的菜单输出函数 wp_nav_menu,给它加上一个 after 参数,

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  

这样可以给每个菜单项的后面加一个字符,且 html 结构如下

  1. <ul>   
  2.     <li><a href=""> 阿树工作室</a>|</li>   
  3.     <li><a href=""> 阿树工作室</a>|</li>   
  4.     <li><a href=""> 阿树工作室</a>|</li>   
  5. </ul>  

这样有个显而易见的缺点就是每个菜单项后面都有个竖线,最后一个菜单项也有,可是我们肯定不需要菜单的最后面也出现竖线,当然这样的结构,通过 css 还是可以写出上面图片中的样式的。

我们要的效果:以及菜单每个菜单项后面加一个分割线,菜单的最后面不要,二级菜单不要。

分析:wp_nav_menu 函数输出菜单项的代码在 wp-includes/nav-menu-template.php 文件里面,具体的呢,在文件中 Walker_Nav_Menu 类里面的 start_el 函数,所以,方法就是改造这个函数。

步骤一:找到 wp_nav_menu 函数,增加一个 walker 参数,如下:

  1. <?php   
  2. $args = array(   
  3.     'depth'=>2, //支持二级菜单   
  4.     'walker' => new ashuwp_navwalker(), //后面的 ashuwp_navwolker 是类名   
  5.     'theme_location' => 'ashuwp-menu'   //注意这个 theme-location 参数
  6. );   
  7. wp_nav_menu($args);   
  8. ?>  

关于 walker 参数的用法,请参考官网。

步骤二:前面的代码中 walker 参数的值,后面是一个类,类名是 ashuwp_navwolker,所以第二部就是新建这个类,如下:

  1. //定义 ashuwp_navwalker 类,继承 wp-includes/nav-menu-template.php 文件中的 Walker_Nav_Menu   
  2. class ashuwp_navwalker extends Walker_Nav_Menu {   
  3.     //在中间添加函数,直接复制 Walker_Nav_Menu 类的 start_el 函数进来   
  4. }  

新定义一个 ashuwp_navwalker 类,继承 wp-includes/nav-menu-template.php 文件中的 Walker_Nav_Menu,然后将 Walker_Nav_Menu 类的 start_el 函数直接复制进去,复制完后,如下:

  1. //定义 ashuwp_navwalker 类,继承 wp-includes/nav-menu-template.php 文件中的 Walker_Nav_Menu   
  2. class ashuwp_navwalker extends Walker_Nav_Menu {   
  3.     //在中间添加函数,直接复制 Walker_Nav_Menu 类的 start_el 函数进来   
  4.     function start_el( &$output$item$depth = 0, $args = array(), $id = 0 ) {   
  5.         $indent = ( $depth ) ? str_repeat" "$depth ) : '';   
  6.   
  7.         $class_names = $value = '';   
  8.   
  9.         $classes = empty$item->classes ) ? array() : (array$item->classes;   
  10.         $classes[] = 'menu-item-' . $item->ID;   
  11.   
  12.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter$classes ), $item$args ) );   
  13.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  14.   
  15.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item$args );   
  16.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  17.   
  18.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  19.   
  20.         $atts = array();   
  21.         $atts['title']  = ! empty$item->attr_title ) ? $item->attr_title : '';   
  22.         $atts['target'] = ! empty$item->target )     ? $item->target     : '';   
  23.         $atts['rel']    = ! empty$item->xfn )        ? $item->xfn        : '';   
  24.         $atts['href']   = ! empty$item->url )        ? $item->url        : '';   
  25.   
  26.         $atts = apply_filters( 'nav_menu_link_attributes', $atts$item$args );   
  27.   
  28.         $attributes = '';   
  29.         foreach ( $atts as $attr => $value ) {   
  30.             if ( ! empty$value ) ) {   
  31.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  32.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  33.             }   
  34.         }   
  35.   
  36.         $item_output = $args->before;   
  37.         $item_output .= '<a'. $attributes .'>';   
  38.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  39.         $item_output .= '</a>';   
  40.         $item_output .= $args->after;   
  41.   
  42.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output$item$depth$args );   
  43.     }   
  44. }  

步骤三:改造 ashuwp_navwalker 类中的 start_el 函数。

1. 在 start_el 函数开头,定义一个静态数组变量,用来计数,用数组可以支持多个菜单。注意数组中的初始值,需要支持多少个菜单,都需要手动加上,静态变量用来记每个输出的菜单里面的一级菜单的数量。

  1. //定义 ashuwp_navwalker 类,继承 wp-includes/nav-menu-template.php 文件中的 Walker_Nav_Menu   
  2. class ashuwp_navwalker extends Walker_Nav_Menu {   
  3.     //在中间添加函数,直接复制 Walker_Nav_Menu 类的 start_el 函数进来   
  4.     function start_el( &$output$item$depth = 0, $args = array(), $id = 0 ) {   
  5.         //定义静态变量 $top_level_count 数组中的值对应多个 wp_nav_menu 函数中的 theme_location 参数的值   
  6.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  7.         //......  

2. 添加计算菜单中一级菜单数量的函数。该函数不需要放入类中,随便放在主题的 functions.php 文件的某一位置。

  1. //参数 $menu_id 为菜单 id   
  2. function ashuwp_count_top_level_menu_items($menu_id){   
  3.     $count = 0;   
  4.     $menu_items = wp_get_nav_menu_items($menu_id);   
  5.     foreach($menu_items as $menu_item){   
  6.         if($menu_item->menu_item_parent==0){   
  7.             $count++;   
  8.         }   
  9.     }   
  10.     return $count;   
  11. }  

3. 重新定义 $args-after 的值,将下面的代码加入 start_el 函数中。

  1. /***add code****/  
  2.         $args->after='';   
  3.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  4.             $top_level_count[$args->theme_location]++; //Increment   
  5.         }   
  6.         $location_name = $args->theme_location;   
  7.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations$location_name ] ) ) {   
  8.             $main_nav = wp_get_nav_menu_object( $locations$location_name ] );   
  9.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  10.                 $args->after= '<span class="menu_line">|</span>';   
  11.             }   
  12.         }   
  13.         /*****add code*****/  

做好 1 3 两个点之后, ashuwp_navwalker extends 类如下:

  1. //定义 ashuwp_navwalker 类,继承 wp-includes/nav-menu-template.php 文件中的 Walker_Nav_Menu   
  2. class ashuwp_navwalker extends Walker_Nav_Menu {   
  3.     //在中间添加函数,直接复制 Walker_Nav_Menu 类的 start_el 函数进来   
  4.     function start_el( &$output$item$depth = 0, $args = array(), $id = 0 ) {   
  5.         //定义静态变量 $top_level_count 数组中的值对应多个 wp_nav_menu 函数中的 theme_location 参数的值   
  6.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  7.            
  8.         $indent = ( $depth ) ? str_repeat" "$depth ) : '';   
  9.   
  10.         $class_names = $value = '';   
  11.   
  12.         $classes =empty$item->classes ) ? array() : (array$item->classes;   
  13.         $classes[] = 'menu-item-' . $item->ID;   
  14.   
  15.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter$classes ), $item$args ) );   
  16.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  17.   
  18.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item$args );   
  19.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  20.   
  21.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  22.   
  23.         $atts = array();   
  24.         $atts['title']  = ! empty$item->attr_title ) ? $item->attr_title : '';   
  25.         $atts['target'] = ! empty$item->target )     ? $item->target     : '';   
  26.         $atts['rel']    = ! empty$item->xfn )        ? $item->xfn        : '';   
  27.         $atts['href']   = ! empty$item->url )        ? $item->url        : '';   
  28.   
  29.         $atts = apply_filters( 'nav_menu_link_attributes', $atts$item$args );   
  30.   
  31.         $attributes = '';   
  32.         foreach ( $atts as $attr => $value ) {   
  33.             if ( ! empty$value ) ) {   
  34.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  35.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  36.             }   
  37.         }   
  38.            
  39.         /***add code****/  
  40.         $args->after='';   
  41.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  42.             $top_level_count[$args->theme_location]++; //Increment   
  43.         }   
  44.         $location_name = $args->theme_location;   
  45.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations$location_name ] ) ) {   
  46.             $main_nav = wp_get_nav_menu_object( $locations$location_name ] );   
  47.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  48.                 $args->after= '<span class="menu_line">|</span>';   
  49.             }   
  50.         }   
  51.         /*****add code*****/  
  52.            
  53.         $item_output = $args->before;   
  54.         $item_output .= '<a'. $attributes .'>';   
  55.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  56.         $item_output .= '</a>';   
  57.         $item_output .= $args->after;   
  58.   
  59.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output$item$depth$args );   
  60.     }   
  61. }  

至此,就可以完成了。

 

懒人专用

将下列代码复制到你的主题的 functions.php 文件中

  1. function ashuwp_count_top_level_menu_items($menu_id){   
  2.     $count = 0;   
  3.     $menu_items = wp_get_nav_menu_items($menu_id);   
  4.     foreach($menu_items as $menu_item){   
  5.         if($menu_item->menu_item_parent==0){   
  6.             $count++;   
  7.         }   
  8.     }   
  9.     return $count;   
  10. }   
  11.   
  12. class ashuwp_navwalker extends Walker_Nav_Menu {   
  13.     function start_el( &$output$item$depth = 0, $args = array(), $id = 0 ) {   
  14.         //根据实际增加和修改下面的数组   
  15.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  16.            
  17.         $indent = ( $depth ) ? str_repeat" "$depth ) : '';   
  18.   
  19.         $class_names = $value = '';   
  20.   
  21.         $classes = empty$item->classes ) ? array() : (array$item->classes;   
  22.         $classes[] = 'menu-item-' . $item->ID;   
  23.   
  24.         /**
  25.          * Filter the CSS class(es) applied to a menu item's <li>.  
  26.          *  
  27.          * @since 3.0.0  
  28.          *  
  29.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  30.          * @param object $item    The current menu item.  
  31.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  32.          */  
  33.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter$classes ), $item$args ) );   
  34.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  35.   
  36.         /**
  37.          * Filter the ID applied to a menu item's <li>.  
  38.          *  
  39.          * @since 3.0.1  
  40.          *  
  41.          * @param string The ID that is applied to the menu item's <li>.  
  42.          * @param object $item The current menu item.  
  43.          * @param array $args An array of arguments. @see wp_nav_menu()  
  44.          */  
  45.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item$args );   
  46.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  47.   
  48.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  49.   
  50.         $atts = array();   
  51.         $atts['title']  = ! empty$item->attr_title ) ? $item->attr_title : '';   
  52.         $atts['target'] = ! empty$item->target )     ? $item->target     : '';   
  53.         $atts['rel']    = ! empty$item->xfn )        ? $item->xfn        : '';   
  54.         $atts['href']   = ! empty$item->url )        ? $item->url        : '';   
  55.   
  56.         /**
  57.          * Filter the HTML attributes applied to a menu item's <a>.  
  58.          *  
  59.          * @since 3.6.0  
  60.          *  
  61.          * @param array $atts {  
  62.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  63.          *  
  64.          *     @type string $title  The title attribute.  
  65.          *     @type string $target The target attribute.  
  66.          *     @type string $rel    The rel attribute.  
  67.          *     @type string $href   The href attribute.  
  68.          * }  
  69.          * @param object $item The current menu item.  
  70.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  71.          */  
  72.         $atts = apply_filters( 'nav_menu_link_attributes', $atts$item$args );   
  73.   
  74.         $attributes = '';   
  75.         foreach ( $atts as $attr => $value ) {   
  76.             if ( ! empty$value ) ) {   
  77.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  78.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  79.             }   
  80.         }   
  81.            
  82.         /***add code****/  
  83.         $args->after='';   
  84.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  85.             $top_level_count[$args->theme_location]++; //Increment   
  86.         }   
  87.         $location_name = $args->theme_location;   
  88.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations$location_name ] ) ) {   
  89.             $main_nav = wp_get_nav_menu_object( $locations$location_name ] );   
  90.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  91.                 $args->after= '<span class="menu_line">|</span>';   
  92.             }   
  93.         }   
  94.         /*****add code*****/  
  95.            
  96.         $item_output = $args->before;   
  97.         $item_output .= '<a'. $attributes .'>';   
  98.         /** This filter is documented in wp-includes/post-template.php */  
  99.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  100.         $item_output .= '</a>';   
  101.         $item_output .= $args->after;   
  102.   
  103.         /**
  104.          * Filter a menu item's starting output.  
  105.          *  
  106.          * The menu item's starting output only includes $args->before, the opening <a>,  
  107.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  108.          * no filter for modifying the opening and closing <li> for a menu item.  
  109.          *  
  110.          * @since 3.0.0  
  111.          *  
  112.          * @param string $item_output The menu item's starting HTML output.  
  113.          * @param object $item        Menu item data object.  
  114.          * @param int    $depth       Depth of menu item. Used for padding.  
  115.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  116.          */  
  117.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output$item$depth$args );   
  118.     }   
  119. }  

然后修改你的 wp_nav_menu 函数,添加 walker 参数

  1. <?php   
  2. $args = array(   
  3.     'depth'=>2, //支持二级菜单   
  4.     'walker' => new ashuwp_navwalker(), //后面的 ashuwp_navwolker 是类名   
  5.     'theme_location' => 'ashuwp-menu'   
  6. );   
  7. wp_nav_menu($args);   
  8. ?>