wordpress进阶教程(三十五):给菜单加上分隔线或者分隔字符


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

view

 

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

这样有个显而易见的缺点就是每个菜单项后面都有个竖线,最后一个菜单项也有,可是我们肯定不需要菜单的最后面也出现竖线,当然这样的结构,通过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.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

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

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

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

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

至此,就可以完成了。

 

懒人专用

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>  

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

  1. <?php   
  2. $args = array(   
  3.     'after'=>'|' //菜单项后面加|字符   
  4. );   
  5. wp_nav_menu($args);   
  6. ?>  
  7. <ul>   
  8.     <li><a href="">阿树工作室</a>|</li>   
  9.     <li><a href="">阿树工作室</a>|</li>   
  10.     <li><a href="">阿树工作室</a>|</li>   
  11. </ul>  
  12. <?php   
  13. $args = array(   
  14.     'depth'=>2, //支持二级菜单   
  15.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  16.     'theme_location' => 'ashuwp-menu'   //注意这个theme-location参数
  17. );   
  18. wp_nav_menu($args);   
  19. ?>  
  20. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  21. class ashuwp_navwalker extends Walker_Nav_Menu {   
  22.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  23. }  
  24. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  25. class ashuwp_navwalker extends Walker_Nav_Menu {   
  26.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  27.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  28.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  29.   
  30.         $class_names = $value = '';   
  31.   
  32.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  33.         $classes[] = 'menu-item-' . $item->ID;   
  34.   
  35.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  36.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  37.   
  38.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  39.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  40.   
  41.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  42.   
  43.         $atts = array();   
  44.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  45.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  46.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  47.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  48.   
  49.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  50.   
  51.         $attributes = '';   
  52.         foreach ( $atts as $attr => $value ) {   
  53.             if ( ! empty( $value ) ) {   
  54.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  55.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  56.             }   
  57.         }   
  58.   
  59.         $item_output = $args->before;   
  60.         $item_output .= '<a'. $attributes .'>';   
  61.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  62.         $item_output .= '</a>';   
  63.         $item_output .= $args->after;   
  64.   
  65.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  66.     }   
  67. }  
  68. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  69. class ashuwp_navwalker extends Walker_Nav_Menu {   
  70.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  71.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  72.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  73.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  74.         //......  
  75. //参数$menu_id为菜单id   
  76. function ashuwp_count_top_level_menu_items($menu_id){   
  77.     $count = 0;   
  78.     $menu_items = wp_get_nav_menu_items($menu_id);   
  79.     foreach($menu_items as $menu_item){   
  80.         if($menu_item->menu_item_parent==0){   
  81.             $count++;   
  82.         }   
  83.     }   
  84.     return $count;   
  85. }  
  86. /***add code****/  
  87.         $args->after='';   
  88.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  89.             $top_level_count[$args->theme_location]++; //Increment   
  90.         }   
  91.         $location_name = $args->theme_location;   
  92.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  93.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  94.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  95.                 $args->after= '<span class="menu_line">|</span>';   
  96.             }   
  97.         }   
  98.         /*****add code*****/  
  99. //定义ashuwp_navwalker类,继承wp-includes/nav-menu-template.php文件中的Walker_Nav_Menu   
  100. class ashuwp_navwalker extends Walker_Nav_Menu {   
  101.     //在中间添加函数,直接复制Walker_Nav_Menu类的start_el函数进来   
  102.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  103.         //定义静态变量$top_level_count 数组中的值对应多个wp_nav_menu函数中的theme_location参数的值   
  104.         static $top_level_count = array('ashuwp-menu'=>0,'ashuwp-nav'=>0);   
  105.            
  106.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  107.   
  108.         $class_names = $value = '';   
  109.   
  110.         $classes =empty( $item->classes ) ? array() : (array) $item->classes;   
  111.         $classes[] = 'menu-item-' . $item->ID;   
  112.   
  113.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  114.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  115.   
  116.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  117.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  118.   
  119.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  120.   
  121.         $atts = array();   
  122.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  123.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  124.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  125.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  126.   
  127.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  128.   
  129.         $attributes = '';   
  130.         foreach ( $atts as $attr => $value ) {   
  131.             if ( ! empty( $value ) ) {   
  132.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  133.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  134.             }   
  135.         }   
  136.            
  137.         /***add code****/  
  138.         $args->after='';   
  139.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  140.             $top_level_count[$args->theme_location]++; //Increment   
  141.         }   
  142.         $location_name = $args->theme_location;   
  143.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  144.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  145.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  146.                 $args->after= '<span class="menu_line">|</span>';   
  147.             }   
  148.         }   
  149.         /*****add code*****/  
  150.            
  151.         $item_output = $args->before;   
  152.         $item_output .= '<a'. $attributes .'>';   
  153.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  154.         $item_output .= '</a>';   
  155.         $item_output .= $args->after;   
  156.   
  157.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  158.     }   
  159. }  
  160. function ashuwp_count_top_level_menu_items($menu_id){   
  161.     $count = 0;   
  162.     $menu_items = wp_get_nav_menu_items($menu_id);   
  163.     foreach($menu_items as $menu_item){   
  164.         if($menu_item->menu_item_parent==0){   
  165.             $count++;   
  166.         }   
  167.     }   
  168.     return $count;   
  169. }   
  170.   
  171. class ashuwp_navwalker extends Walker_Nav_Menu {   
  172.     function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {   
  173.         //根据实际增加和修改下面的数组   
  174.         static $top_level_count = array('ashu-menu'=>0,'top-menu'=>0);   
  175.            
  176.         $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';   
  177.   
  178.         $class_names = $value = '';   
  179.   
  180.         $classes = empty( $item->classes ) ? array() : (array) $item->classes;   
  181.         $classes[] = 'menu-item-' . $item->ID;   
  182.   
  183.         /**
  184.          * Filter the CSS class(es) applied to a menu item's <li>.  
  185.          *  
  186.          * @since 3.0.0  
  187.          *  
  188.          * @param array  $classes The CSS classes that are applied to the menu item's <li>.  
  189.          * @param object $item    The current menu item.  
  190.          * @param array  $args    An array of arguments. @see wp_nav_menu()  
  191.          */  
  192.         $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );   
  193.         $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';   
  194.   
  195.         /**
  196.          * Filter the ID applied to a menu item's <li>.  
  197.          *  
  198.          * @since 3.0.1  
  199.          *  
  200.          * @param string The ID that is applied to the menu item's <li>.  
  201.          * @param object $item The current menu item.  
  202.          * @param array $args An array of arguments. @see wp_nav_menu()  
  203.          */  
  204.         $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );   
  205.         $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';   
  206.   
  207.         $output .= $indent . '<li' . $id . $value . $class_names .'>';   
  208.   
  209.         $atts = array();   
  210.         $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';   
  211.         $atts['target'] = ! empty( $item->target )     ? $item->target     : '';   
  212.         $atts['rel']    = ! empty( $item->xfn )        ? $item->xfn        : '';   
  213.         $atts['href']   = ! empty( $item->url )        ? $item->url        : '';   
  214.   
  215.         /**
  216.          * Filter the HTML attributes applied to a menu item's <a>.  
  217.          *  
  218.          * @since 3.6.0  
  219.          *  
  220.          * @param array $atts {  
  221.          *     The HTML attributes applied to the menu item's <a>, empty strings are ignored.  
  222.          *  
  223.          *     @type string $title  The title attribute.  
  224.          *     @type string $target The target attribute.  
  225.          *     @type string $rel    The rel attribute.  
  226.          *     @type string $href   The href attribute.  
  227.          * }  
  228.          * @param object $item The current menu item.  
  229.          * @param array  $args An array of arguments. @see wp_nav_menu()  
  230.          */  
  231.         $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );   
  232.   
  233.         $attributes = '';   
  234.         foreach ( $atts as $attr => $value ) {   
  235.             if ( ! empty( $value ) ) {   
  236.                 $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );   
  237.                 $attributes .= ' ' . $attr . '="' . $value . '"';   
  238.             }   
  239.         }   
  240.            
  241.         /***add code****/  
  242.         $args->after='';   
  243.         if($item->menu_item_parent==0 and $top_level_count[$args->theme_location]!==null){ //Count top level menu items   
  244.             $top_level_count[$args->theme_location]++; //Increment   
  245.         }   
  246.         $location_name = $args->theme_location;   
  247.         if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $location_name ] ) ) {   
  248.             $main_nav = wp_get_nav_menu_object( $locations[ $location_name ] );   
  249.             if($item->menu_item_parent==0  && $top_level_count[$args->theme_location]!=ashuwp_count_top_level_menu_items($main_nav->term_id)){   
  250.                 $args->after= '<span class="menu_line">|</span>';   
  251.             }   
  252.         }   
  253.         /*****add code*****/  
  254.            
  255.         $item_output = $args->before;   
  256.         $item_output .= '<a'. $attributes .'>';   
  257.         /** This filter is documented in wp-includes/post-template.php */  
  258.         $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;   
  259.         $item_output .= '</a>';   
  260.         $item_output .= $args->after;   
  261.   
  262.         /**
  263.          * Filter a menu item's starting output.  
  264.          *  
  265.          * The menu item's starting output only includes $args->before, the opening <a>,  
  266.          * the menu item's title, the closing </a>, and $args->after. Currently, there is  
  267.          * no filter for modifying the opening and closing <li> for a menu item.  
  268.          *  
  269.          * @since 3.0.0  
  270.          *  
  271.          * @param string $item_output The menu item's starting HTML output.  
  272.          * @param object $item        Menu item data object.  
  273.          * @param int    $depth       Depth of menu item. Used for padding.  
  274.          * @param array  $args        An array of arguments. @see wp_nav_menu()  
  275.          */  
  276.         $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );   
  277.     }   
  278. }  
  279. <?php   
  280. $args = array(   
  281.     'depth'=>2, //支持二级菜单   
  282.     'walker' => new ashuwp_navwalker(), //后面的ashuwp_navwolker是类名   
  283.     'theme_location' => 'ashuwp-menu'   
  284. );   
  285. wp_nav_menu($args);   
  286. ?>