WordPress使用wp_nav_menu函数生成需要的class结构
WordPress制作导航菜单,会使用wp_nav_menu函数,它可以自动调用出后台创建的导航菜单。但是使用…
WordPress制作导航菜单,会使用wp_nav_menu函数,它可以自动调用出后台创建的导航菜单。但是使用默认的wp_nav_menu函数生成的菜单结构比较单调,有时很难达到我们自己的需要。
下面学做网站论坛介绍一下在做网站时,Wordpress如何使用wp_nav_menu函数生成需要的class结构。
第一步:将下的函数代码保存为function-nav.php;(或者直接下载这个PHP文件,点击下载)
<?php
/*自定义二级菜单导航开始*/
/*本代码由学做网站论坛https://www.xuewangzhan.net修改完成*/
class wp_bootstrap_navwalker extends Walker_Nav_Menu {
public function start_lvl( &$output, $depth = 0, $args = array() ) {
$indent = str_repeat( "t", $depth );
$output .= "n$indent<ul role="menu" class=" dropdown-menu">n"; //00001-下拉UL样式
}
public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
$indent = ( $depth ) ? str_repeat( "t", $depth ) : '';
//判断标题文字是不是指定文字,然后显示样式
if ( strcasecmp( $item->attr_title, 'divider' ) == 0 && $depth === 1 ) {
$output .= $indent . '<li role="presentation" class="divider">';
} else if ( strcasecmp( $item->title, 'divider') == 0 && $depth === 1 ) {
$output .= $indent . '<li role="presentation" class="divider">';
} else if ( strcasecmp( $item->attr_title, 'dropdown-header') == 0 && $depth === 1 ) {
$output .= $indent . '<li role="presentation" class="dropdown-header">' . esc_attr( $item->title );
} else if ( strcasecmp($item->attr_title, 'disabled' ) == 0 ) {
$output .= $indent . '<li role="presentation" class="disabled"><a href="#">' . esc_attr( $item->title ) . '</a>';
} else {
$class_names = $value = '';
/*=================控制LI开始========================*/
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$classes[] = 'menu-item-' . $item->ID; //00002-所有li添加class,包含一级二级li
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
if ( $args->has_children )
$class_names .= ' dropdown nav-item'; //00003-有下拉菜单的父LI的添加class
if ( !$args->has_children && $depth === 0 )
$class_names .= ' nav-item';//00004-没有下拉菜单的父LI添加class
if ( !$args->has_children && $depth === 1 )
$class_names .= ' nav3';//00005-二级子菜单LI添加class
/*=================控制LI结束========================*/
if ( in_array( 'current-menu-item', $classes ) )
$class_names .= ' active'; //00006-当前样式
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
$id = apply_filters( 'nav_menu_item_id', ' menu-item-'. $item->ID, $item, $args ); //00007-菜单所有li的添加ID,包含一级二级li,没多大用
$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
$output .= $indent . '<li' . $id . $value . $class_names .'>';
$atts = array();
$atts['title'] = ! empty( $item->title ) ? $item->title : '';
$atts['target'] = ! empty( $item->target ) ? $item->target : '';
$atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : '';
/*=================控制A开始========================*/
// If item has_children add atts to a.
if ( $args->has_children && $depth === 0 ) {
$atts['href'] = $item->url;
$atts['data-toggle'] = 'dropdown'; //00008-控制有下拉的父A点击是否跳转,如果删除将跳转到链接地址
$atts['class'] = 'dropdown-toggle'; //00009-有下拉的第一个父A的CLASS
$atts['aria-haspopup'] = true;
}
elseif ( !$args->has_children && $depth === 1 ) {
$atts['href'] = ! empty( $item->url ) ? $item->url : '';
$atts['class'] = 'zilink'; //000010-有下拉的二级子菜单里A的CLASS
}
else {
$atts['href'] = ! empty( $item->url ) ? $item->url : '';
$atts['class'] = 'toplink'; //000011-没有下拉菜单里A的CLASS
}
/*=================控制A结束========================*/
$atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );
$attributes = '';
foreach ( $atts as $attr => $value ) {
if ( ! empty( $value ) ) {
$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
$attributes .= ' ' . $attr . '="' . $value . '"';
}
}
$item_output = $args->before;
if ( ! empty( $item->attr_title ) )
$item_output .= '<a'. $attributes .'><span class="glyphicon ' . esc_attr( $item->attr_title ) . '"></span> ';
elseif ( $args->has_children && $depth === 0 ) {
/*=================给 【A标签开始标签】 前面、里面添加其它内容或者标签开始========================*/
$item_output .= '<a'. $attributes .'><span class="s1"></span>';//000012-在有下拉的父A前、里添加内容
}
elseif ( !$args->has_children && $depth === 1 ) {
$item_output .= '<a'. $attributes .'><span class="s2"></span>';//000013-在二级菜单A前、里添加内容
}
else {
$item_output .= '<a'. $attributes .'><span class="s0"></span>';//000014-没有下拉菜单A前、里添加内容
}
/*=================给 【A标签开始标签】 前面、里面添加其它内容或者标签结束========================*/
$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
/*=================给 【A标签结束标签】 后面添加其它内容或者标签开始========================*/
if ( $args->has_children && $depth === 0 ) {
$item_output .= ' <span class="c1"></span></a>';//000015-在有下拉的父A后、里添加内容
}
elseif ( !$args->has_children && $depth === 1 ) {
$item_output .= ' <span class="c2"></span></a>';//000016-在二级菜单A后、里添加内容
}
else {
$item_output .= ' <span class="c0"></span></a>';//000017-没有下拉菜单A后、里添加内容
}
/*=================给 【A标签结束标签】 后面添加其它内容或者标签结束========================*/
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) {
if ( ! $element )
return;
$id_field = $this->db_fields['id'];
// Display this element.
if ( is_object( $args[0] ) )
$args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] );
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
}
}
/*自定义二级菜单导航结束*/
?>
第二步:将下载的function-nav.php上传到自己的Wordpress模板文件夹下,在自己的模板函数文件functions.php中,使用下面的代码引入这个function-nav.php文件;
require_once( TEMPLATEPATH . '/function-nav.php');
第三步:使用以下的代码来调用菜单。
<?php
wp_nav_menu( array(
'theme_location' => 'topmenu',
'depth' => 2,
'container' => false,
'menu_class' => 'nav navbar-nav navlist',
'menu_id' => 'topmeau',
'fallback_cb' => 'wp_page_menu',
//添加或更改walker参数
'walker' => new wp_bootstrap_navwalker())
);
?>
如果想修改class类,可以在第一步的代码中修改,达到自己需要的class结构。
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!