Wordpress主题中顶栏(Zurb基础)的菜单漫游器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress主题中顶栏(Zurb基础)的菜单漫游器相关的知识,希望对你有一定的参考价值。
Turns Wordpress custom menus into responsive-ready menu that comes with foundation framework. code goes into functions.php
/* http://codex.wordpress.org/Function_Reference/register_nav_menus#Examples */ 'top-bar-l' => 'Left Top Bar', // registers the menu in the WordPress admin menu editor 'top-bar-r' => 'Right Top Bar' )); /* http://codex.wordpress.org/Function_Reference/wp_nav_menu */ // the left top bar function foundation_top_bar_l() { 'container' => false, // remove nav container 'container_class' => 'menu', // class of container 'menu' => '', // menu name 'menu_class' => 'top-bar-menu left', // adding custom nav class 'theme_location' => 'top-bar-l', // where it's located in the theme 'before' => '', // before each link <a> 'after' => '', // after each link </a> 'link_before' => '', // before each link text 'link_after' => '', // after each link text 'depth' => 5, // limit the depth of the nav 'fallback_cb' => false, // fallback function (see below) 'walker' => new top_bar_walker() )); } // end left top bar // the right top bar function foundation_top_bar_r() { 'container' => false, // remove nav container 'container_class' => '', // class of container 'menu' => '', // menu name 'menu_class' => 'top-bar-menu right', // adding custom nav class 'theme_location' => 'top-bar-r', // where it's located in the theme 'before' => '', // before each link <a> 'after' => '', // after each link </a> 'link_before' => '', // before each link text 'link_after' => '', // after each link text 'depth' => 5, // limit the depth of the nav 'fallback_cb' => false, // fallback function (see below) 'walker' => new top_bar_walker() )); } // end right top bar /* Customize the output of menus for Foundation top bar classes */ class top_bar_walker extends Walker_Nav_Menu { function display_element($element, &$children_elements, $max_depth, $depth=0, $args, &$output) { $element->classes[] = ($element->has_children) ? 'has-dropdown' : ''; parent::display_element($element, $children_elements, $max_depth, $depth, $args, $output); } function start_el(&$output, $item, $depth, $args) { parent::start_el($item_html, $item, $depth, $args); $output .= ($depth == 0) ? '<li class="divider"></li>' : ''; $output .= '<li class="divider"></li>'; } $output .= $item_html; } $output .= " <ul class="sub-menu dropdown"> "; } } // end top bar walker
以上是关于Wordpress主题中顶栏(Zurb基础)的菜单漫游器的主要内容,如果未能解决你的问题,请参考以下文章