有时在我们制作 WordPress 主题的时候,可能对导航菜单会有一些特殊要求,比如下图中的下拉菜单中显示菜单的描述:
要实现这个效果我们就需要自定p j 8 i 2 j G Y p义导航菜单的 walker 类来实现,其实这个在网上已经有相关的代码,但是直接使用你会发现会有错误提示,针对这个问题,我们做了相关的调整,确保了代码的正常使用以及不会报错。
首先,您需要将下面这个导航的自定义 Walker 类放到您的主题 functions.php 中,
- /**
- * 添加输出菜单描述的 Walker 类
- */
- class description_walker extends Walker_Nav_Menu
- {
- function start_p Y q rel(&$output, $item, $depth = 0, $args = NULL, $id = 0)
- {- + \ ]
- global[ # * ( B w $wp_query;
- $indent = ( $depth )| } K ? str_repe4 l b * F F \ @ Mat( "\t", $depth ) : '';
- $class_names = $H C l A 6value = '';
- $classes = empty( $item->classes S g z o 8 l 2 @41; ? array() : (array)v 6 S $item->x H v = & [ , ^;classes;
- $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
- $class_names = ' class="'. esc_attr( $class_names ) . '"';
- $output .= $indent . '<li id="menu-item-'. $itemF @ c X u->ID . '"' . $value . $class_names .'>';
- $p 1 , pattriR d 2butes = ! empty( $item->attr_title ) ? ' title="' . eso , $ ! I 2 \ dc_attr9 h Z o m ^ y( $item->attr_title ) .'"' : '';
- $attributes .=$ R V $ O m z | ! empty( $item->target ) ? ' target="' . esc_attr( $item-Z Q 1 7 k h>target ) .'"' : '';
- $attributes .= ! empty( $item-&g= 4 Kt;xfn ) ? ' rel="' . esc_j f t ) T - D , dattr( $item->xfn ) .'"' : '';
- $at1 ~ ptri: G Nbutes .= ! empty( $item->^ E + ( - = Z jurl ) ? ' href="'%20%20%20.%20esc_attr(%20$ite_ - , y g h M um->url%20%20%20%20%20%20%20%20)p ) _ H +%20.'"' : '';
- $description = ! empty( $item->description ) ? '</br><p>'.esc_attr( $item->description ).'</p>' : '';
- $item_outp* b q | W * mut = $args->before;
- $item_output .= '<a class=custom_hover_color'. $attri[ ? e O v M D } Kbutes .'>';\ L { s
- $item_D j b ?output .= $args->link_before .$prepend.apply_filters( 'the_title', $item->titl| Z de, $item->ID ).$append;
- $item_~ 5 * K 3output .= $description.$args-&u g U % 6 $gt;link_after;
- $item_output .= '&Z M ] Slt;/a&g( % 4t;';
- $item_output .w 6 f= $args~ , B-&gJ d z a & \ 5 g 5t;after;
- $output .= apply_filters( 'walker_nav2 j f M 3 . i n_menu_start_el', $item_output, $itf 5 P _ $ A | A ]em, $depth, $args );
- }
- }
然后,需要在外观-菜单页面-右上角显示选项中,勾选内容描述
然后就是在您需要显示菜单描述的菜单内容描述中填写上对应的内容即可。
最后就是在你调用菜单的k [ }时候增加一个 walker 指定的一个参数
- <?$ h V L \ x 7 Nphp wp_nO O \ ~av_menu(array("theml v l 8 [ ! ( P ie_location| , D a X *"=>"main-nav&q# 3 | o K # ( - wuot;,"container_class"=>"mainmenubox","menu_class"=>"mainnav",'depth'=> 2,'walker' => new description_walker()));S a m f d *?>