让wordpress输出bootstrap的菜单结构

现在自适应网页(即常说的响应式设计,一个网页在PC平板手机上显示不同的布局)用的越来越多,然而,对于大多数人来说,写一个自适应的网页并非易事,于是有了bootstrap。Bootstrap是twitter的工程师利用业余时间制作推出的一个开源的用于前端开发的工具包,即里面已经写好了css js,你只需要引入它的js和css,然后根据要求,给网页的div添加相应的class属性,即可制作一个响应式网页。

说实话,bootstrap很方便,作者使用过一次,但是有一个缺点,那就是你需要引入bootstrap的框架的css和js,然而这个css里面,有很多代码都是你用不到的,这样就会产生很多冗余代码,而去除css的冗余代码绝对是个体力活,所以作者用过一次就不用了。

将bootstrap应用到wordpress上也很简单,唯一可能有困难的就是菜单,因为bootstrap的菜单有他自己的结构和属性

查看网页源文件,可以看到菜单的结构大概是这样

 <ul class="nav navbar-nav">

<li class="active"><a href="#">Link</a></li>

<li class="dropdown">

<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>

<ul class="dropdown-menu">

<li><a href="#">Action</a></li>

<li><a href="#">Another action</a></li>

</ul>

</li>

</ul>要在wordpress上实现这个菜单结构看似不难,其实,里面Dropdown后面的<b class="caret"></b>对应网页中下拉菜单的那个到三角形,以及二级菜单的ul标签的class属性。除非你把菜单写死,否则使用wp_nav_menu函数是无法输出这两个内容的。

那要怎么办呢?

wordpress的wp_nav_menu函数参数如下:

 <?php

$defaults = array(

'theme_location' => '',

'menu' => '',

'container' => 'div',

'container_class' => '',

'container_id' => '',

'menu_class' => 'menu',

'menu_id' => '',

'echo' => true,

'fallback_cb' => 'wp_page_menu',

'before' => '',

'after' => '',

'link_before' => '',

'link_after' => '',

'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',

'depth' => 0,

'walker' => ''

);

wp_nav_menu( $defaults );

?>其中的walker参数是关键。

更改你的主题菜单输出函数wp_nav_menu的walker参数:

 <?php

wp_nav_menu( array(

'theme_location' => 'ashu_menu',

'depth' => 2,

'container' => false,

'menu_class' => 'nav navbar-nav',

//添加或更改walker参数

'walker' => new wp_bootstrap_navwalker())

);

?>上面代码中walker参数的值是一个类,所以接下来你需要添加这个类,在你的主题functions.php文件中添加下面代码:

 <?php

/**

* Class Name: wp_bootstrap_navwalker

* GitHub URI: https://github.com/twittem/wp-bootstrap-navwalker

* Description: A custom WordPress nav walker class to implement the Bootstrap 3 navigation style in a custom theme using the WordPress built in menu manager.

* Version: 2.0.4

* Author: Edward McIntyre - @twittem

* License: GPL-2.0+

* License URI: http://www.gnu.org/licenses/gpl-2.0.txt

*/

class wp_bootstrap_navwalker extends Walker_Nav_Menu {

/**

* @see Walker::start_lvl()

* @since 3.0.0

*

* @param string $output Passed by reference. Used to append additional content.

* @param int $depth Depth of page. Used for padding.

*/

public function start_lvl( &$output,$depth = 0,$args = array() ) {

$indent = str_repeat( "t",$depth );

$output .= "n$indent<ul role="menu" class=" dropdown-menu">n";

}

/**

* @see Walker::start_el()

* @since 3.0.0

*

* @param string $output Passed by reference. Used to append additional content.

* @param object $item Menu item data object.

* @param int $depth Depth of menu item. Used for padding.

* @param int $current_page Menu item ID.

* @param object $args

*/

public function start_el( &$output,$item,$args = array(),$id = 0 ) {

$indent = ( $depth ) ? str_repeat( "t",$depth ) : '';

/**

* Dividers,Headers or Disabled

* =============================

* Determine whether the item is a Divider,Header,Disabled or regular

* menu item. To prevent errors we use the strcasecmp() function to so a

* comparison that is not case sensitive. The strcasecmp() function returns

* a 0 if the strings are equal.

*/

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 = '';

$classes = empty( $item->classes ) ? array() : (array) $item->classes;

$classes[] = 'menu-item-' . $item->ID;

$class_names = join( ' ',apply_filters( 'nav_menu_css_class',array_filter( $classes ),$args ) );

if ( $args->has_children )

$class_names .= ' dropdown';

if ( in_array( 'current-menu-item',$classes ) )

$class_names .= ' active';

$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';

$id = apply_filters( 'nav_menu_item_id','menu-item-'. $item->ID,$args );

$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 : '';

// If item has_children add atts to a.

if ( $args->has_children && $depth === 0 ) {

$atts['href'] = '#';

$atts['data-toggle'] = 'dropdown';

$atts['class'] = 'dropdown-toggle';

$atts['aria-haspopup'] = 'true';

} else {

$atts['href'] = ! empty( $item->url ) ? $item->url : '';

}

$atts = apply_filters( 'nav_menu_link_attributes',$atts,$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;

/*

* Glyphicons

* ===========

* Since the the menu item is NOT a Divider or Header we check the see

* if there is a value in the attr_title property. If the attr_title

* property is NOT null we apply it as the class name for the glyphicon.

*/

if ( ! empty( $item->attr_title ) )

$item_output .= '<a'. $attributes .'><span class="glyphicon ' . esc_attr( $item->attr_title ) . '"></span>&nbsp;';

else

$item_output .= '<a'. $attributes .'>';

$item_output .= $args->link_before . apply_filters( 'the_title',$item->title,$item->ID ) . $args->link_after;

$item_output .= ( $args->has_children && 0 === $depth ) ? ' <span class="caret"></span></a>' : '</a>';

$item_output .= $args->after;

$output .= apply_filters( 'walker_nav_menu_start_el',$item_output,$depth,$args );

}

}

/**

* Traverse elements to create list from elements.

*

* Display one element if the element doesn't have any children otherwise,

* display the element and its children. Will only traverse up to the max

* depth and no ignore elements under that depth.

*

* This method shouldn't be called directly,use the walk() method instead.

*

* @see Walker::start_el()

* @since 2.5.0

*

* @param object $element Data object

* @param array $children_elements List of elements to continue traversing.

* @param int $max_depth Max depth to traverse.

* @param int $depth Depth of current element.

* @param array $args

* @param string $output Passed by reference. Used to append additional content.

* @return null Null on failure with no changes to parameters.

*/

public function display_element( $element,&$children_elements,$max_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,$output );

}

/**

* Menu Fallback

* =============

* If this function is assigned to the wp_nav_menu's fallback_cb variable

* and a manu has not been assigned to the theme location in the WordPress

* menu manager the function with display nothing to a non-logged in user,

* and will add a link to the WordPress menu manager if logged in as an admin.

*

* @param array $args passed from the wp_nav_menu function.

*

*/

public static function fallback( $args ) {

if ( current_user_can( 'manage_options' ) ) {

extract( $args );

$fb_output = null;

if ( $container ) {

$fb_output = '<' . $container;

if ( $container_id )

$fb_output .= ' id="' . $container_id . '"';

if ( $container_class )

$fb_output .= ' class="' . $container_class . '"';

$fb_output .= '>';

}

$fb_output .= '<ul';

if ( $menu_id )

$fb_output .= ' id="' . $menu_id . '"';

if ( $menu_class )

$fb_output .= ' class="' . $menu_class . '"';

$fb_output .= '>';

$fb_output .= '<li><a href="'%20.%20admin_url(%20'nav-menus.php'%20)%20.%20'">Add a menu</a></li>';

$fb_output .= '</ul>';

if ( $container )

$fb_output .= '</' . $container . '>';

echo $fb_output;

}

}

}

相关文章

我想将wordpress的默认接口路由改掉,愿意是默认的带一个 wp...
wordpress自定义分类法之后,我看到链接都自动在后面添加了一...
事情是这样的,我用 get_post_type 函数创建了一个自定义分类...
最近网站莫名其妙的被顶上了,过一个多小时,就注册一个账号...
最近服务器要到期了,就想着把网站转移到另外一台服务器,本...
今天在写wordpress的接口,然后碰到个奇怪的问题,怎么访问都...