让wordpress输出bootstrap的菜单结构

让wordpress输出bootstrap的菜单结构,第1张

概述现在自适应网页(即常说的响应式设计,一个网页在PC\平板\手机上显示不同的布局)用的越来越多,然而,对于大多数人来说,写一个自适应的网页并非易事,于是有了boo...

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

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

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

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

 <ul >

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

<li >

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

<ul >

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

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

</ul>

</li>

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

那要怎么办呢?

wordpress的@R_404_3306@函数参数如下:

 <?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" >%3$s</ul>',

'depth' => 0,

'walker' => ''

);

@R_404_3306@( $defaults );

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

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

 <?PHP

@R_404_3306@( 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" >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" >';

} else if ( strcasecmp( $item->Title,'divIDer') == 0 && $depth === 1 ) {

$output .= $indent . '<li role="presentation" >';

} else if ( strcasecmp( $item->attr_Title,'dropdown-header') == 0 && $depth === 1 ) {

$output .= $indent . '<li role="presentation" >' . esc_attr( $item->Title );

} else if ( strcasecmp($item->attr_Title,'Disabled' ) == 0 ) {

$output .= $indent . '<li role="presentation" ><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 ? ' ' : '';

$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 ></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 ></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 @R_404_3306@'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 @R_404_3306@ 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 .= ' ';

$fb_output .= '>';

}

$fb_output .= '<ul';

if ( $menu_ID )

$fb_output .= ' ID="' . $menu_ID . '"';

if ( $menu_class )

$fb_output .= ' ';

$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输出bootstrap的菜单结构全部内容,希望文章能够帮你解决让wordpress输出bootstrap的菜单结构所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/998219.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存