WordPress教程

WordPress使用wp_nav_menu函数生成需要的class结构

阿里云

我们在开发网站使用 WordPress 制作导航菜单,会使用 wp_nav_menu 函数,它可以自动调用出后台创建的导航菜单。但是使用默认的 wp_nav_menu 函数生成的菜单结构比较单调,有时很难达到我们自己的需要。

下面学做介绍一下 WordPress 如何使用 wp_nav_menu 函数生成需要的 class 结构。

也想出现在这里?联系我们
创客主机

第一步:将下的函数代码保存为 function-nav.php(或者直接在文章底部下载这个 PHP 文件);

  1. <?php
  2. /*自定义二级菜单导航开始*/
  3. class wp_bootstrap_navwalker extends Walker_Nav_Menu {
  4.  
  5. public function start_lvl( &$output, $depth = 0, $args = array() ) {
  6. $indent = str_repeat( "\t", $depth );
  7. $output .= "\n$indent<ul role="menu" class=" dropdown-menu">\n"; //00001-下拉UL样式
  8. }
  9.  
  10. public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
  11. $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
  12.  
  13. //判断标题文字是不是指定文字,然后显示样式
  14. if ( strcasecmp( $item->attr_title, 'divider' ) == 0 && $depth === 1 ) {
  15. $output .= $indent . '<li role="presentation" class="divider">';
  16. } else if ( strcasecmp( $item->title, 'divider') == 0 && $depth === 1 ) {
  17. $output .= $indent . '<li role="presentation" class="divider">';
  18. } else if ( strcasecmp( $item->attr_title, 'dropdown-header') == 0 && $depth === 1 ) {
  19. $output .= $indent . '<li role="presentation" class="dropdown-header">' . esc_attr( $item->title );
  20. } else if ( strcasecmp($item->attr_title, 'disabled' ) == 0 ) {
  21. $output .= $indent . '<li role="presentation" class="disabled"><a href="#">' . esc_attr( $item->title ) . '</a>';
  22. } else {
  23.  
  24. $class_names = $value = '';
  25.  
  26. /*=================控制LI开始========================*/
  27.  
  28. $classes = empty( $item->classes ) ? array() : (array) $item->classes;
  29. $classes[] = 'menu-item-' . $item->ID; //00002-所有li添加class,包含一级二级li
  30.  
  31. $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
  32.  
  33. if ( $args->has_children )
  34. $class_names .= ' dropdown nav-item'; //00003-有下拉菜单的父LI的添加class
  35.  
  36. if ( !$args->has_children && $depth === 0 )
  37. $class_names .= ' nav-item';//00004-没有下拉菜单的父LI添加class
  38.  
  39. if ( !$args->has_children && $depth === 1 )
  40. $class_names .= ' nav3';//00005-二级子菜单LI添加class
  41.  
  42. /*=================控制LI结束========================*/
  43.  
  44. if ( in_array( 'current-menu-item', $classes ) )
  45. $class_names .= ' active'; //00006-当前样式
  46.  
  47. $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
  48.  
  49. $id = apply_filters( 'nav_menu_item_id', ' menu-item-'. $item->ID, $item, $args ); //00007-菜单所有li的添加ID,包含一级二级li,没多大用
  50. $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
  51.  
  52. $output .= $indent . '<li' . $id . $value . $class_names .'>';
  53.  
  54. $atts = array();
  55. $atts['title'] = ! empty( $item->title ) ? $item->title : '';
  56. $atts['target'] = ! empty( $item->target ) ? $item->target : '';
  57. $atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : '';
  58.  
  59. /*=================控制A开始========================*/
  60.  
  61. // If item has_children add atts to a.
  62. if ( $args->has_children && $depth === 0 ) {
  63. $atts['href'] = $item->url;
  64. $atts['data-toggle'] = 'dropdown'; //00008-控制有下拉的父A点击是否跳转,如果删除将跳转到链接地址
  65. $atts['class'] = 'dropdown-toggle'; //00009-有下拉的第一个父A的CLASS
  66. $atts['aria-haspopup'] = true;
  67. }
  68. elseif ( !$args->has_children && $depth === 1 ) {
  69. $atts['href'] = ! empty( $item->url ) ? $item->url : '';
  70. $atts['class'] = 'zilink'; //000010-有下拉的二级子菜单里A的CLASS
  71. }
  72. else {
  73. $atts['href'] = ! empty( $item->url ) ? $item->url : '';
  74. $atts['class'] = 'toplink'; //000011-没有下拉菜单里A的CLASS
  75. }
  76.  
  77. /*=================控制A结束========================*/
  78.  
  79. $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );
  80.  
  81. $attributes = '';
  82. foreach ( $atts as $attr => $value ) {
  83. if ( ! empty( $value ) ) {
  84. $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
  85. $attributes .= ' ' . $attr . '="' . $value . '"';
  86. }
  87. }
  88.  
  89. $item_output = $args->before;
  90.  
  91. if ( ! empty( $item->attr_title ) )
  92. $item_output .= '<a'. $attributes .'><span class="glyphicon ' . esc_attr( $item->attr_title ) . '"></span>&nbsp;';
  93. elseif ( $args->has_children && $depth === 0 ) {
  94.  
  95. /*=================给 【A标签开始标签】 前面、里面添加其它内容或者标签开始========================*/
  96.  
  97. $item_output .= '<a'. $attributes .'><span class="s1"></span>';//000012-在有下拉的父A前、里添加内容
  98. }
  99. elseif ( !$args->has_children && $depth === 1 ) {
  100. $item_output .= '<a'. $attributes .'><span class="s2"></span>';//000013-在二级菜单A前、里添加内容
  101. }
  102. else {
  103. $item_output .= '<a'. $attributes .'><span class="s0"></span>';//000014-没有下拉菜单A前、里添加内容
  104. }
  105. /*=================给 【A标签开始标签】 前面、里面添加其它内容或者标签结束========================*/
  106.  
  107. $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
  108.  
  109. /*=================给 【A标签结束标签】 后面添加其它内容或者标签开始========================*/
  110.  
  111. if ( $args->has_children && $depth === 0 ) {
  112. $item_output .= ' <span class="c1"></span></a>';//000015-在有下拉的父A后、里添加内容
  113. }
  114. elseif ( !$args->has_children && $depth === 1 ) {
  115. $item_output .= ' <span class="c2"></span></a>';//000016-在二级菜单A后、里添加内容
  116. }
  117. else {
  118. $item_output .= ' <span class="c0"></span></a>';//000017-没有下拉菜单A后、里添加内容
  119. }
  120.  
  121. /*=================给 【A标签结束标签】 后面添加其它内容或者标签结束========================*/
  122.  
  123. $item_output .= $args->after;
  124.  
  125. $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
  126. }
  127. }
  128.  
  129. public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) {
  130. if ( ! $element )
  131. return;
  132.  
  133. $id_field = $this->db_fields['id'];
  134.  
  135. // Display this element.
  136. if ( is_object( $args[0] ) )
  137. $args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] );
  138.  
  139. parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
  140. }
  141.  
  142. }
  143.  
  144. /*自定义二级菜单导航结束*/
  145.  
  146. ?>

二步:将下载的 function-nav.php 上传到自己的 WordPress 模板文件夹下,在自己的模板函数文件 functions.php 中,使用下面的代码引入这个 function-nav.php 文件;

  1. require_once( TEMPLATEPATH . '/function-nav.php');

第三步:使用以下的代码来调用菜单。

  1. <?php
  2. wp_nav_menu( array(
  3. 'theme_location' => 'topmenu',
  4. 'depth' => 2,
  5. 'container' => false,
  6. 'menu_class' => 'nav navbar-nav navlist',
  7. 'menu_id' => 'topmeau',
  8. 'fallback_cb' => 'wp_page_menu',
  9. //添加或更改walker参数
  10. 'walker' => new wp_bootstrap_navwalker())
  11. );
  12. ?>

如果想修改 class 类,可以在第一步的代码中修改,达到自己需要的 class 结构。

WordPress 使用 wp_nav_menu 函数生成需要的 class 结构

已有 341 人购买
  • lwfr
查看演示升级 VIP立刻购买

下载地址
收藏
(0)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!