当前位置: 首页>>代码示例>>PHP>>正文


PHP Walker_Nav_Menu::end_lvl方法代码示例

本文整理汇总了PHP中Walker_Nav_Menu::end_lvl方法的典型用法代码示例。如果您正苦于以下问题:PHP Walker_Nav_Menu::end_lvl方法的具体用法?PHP Walker_Nav_Menu::end_lvl怎么用?PHP Walker_Nav_Menu::end_lvl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Walker_Nav_Menu的用法示例。


在下文中一共展示了Walker_Nav_Menu::end_lvl方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

 function end_lvl(&$output, $depth = 0, $args = array())
 {
     if (0 == $depth) {
         return;
     }
     parent::end_lvl($output, $depth, $args);
 }
开发者ID:standrewsdigital,项目名称:wp-peanut-butter-2015,代码行数:7,代码来源:navigation.php

示例2:

 function end_lvl(&$output, $depth, $args)
 {
     if (!$args->dropdown) {
         parent::end_lvl($output, $depth, $args);
     } else {
         $indent = str_repeat("\t", $depth);
     }
     // don't output children closing tag
 }
开发者ID:johnmanlove,项目名称:Bridgeland,代码行数:9,代码来源:advanced-menu-widget.php

示例3: array

 /**
  * @see Walker::end_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.
  */
 function end_lvl(&$output, $depth = 0, $args = array())
 {
     if ($this->in_current_menu && $depth > 0) {
         parent::end_lvl($output, $depth, $args);
     }
     /*
     If we're in the current menu and we are closing the top-level item
     then set $in_current_menu to false
     */
     if ($depth == 0) {
         $this->in_current_menu = false;
     }
 }
开发者ID:jackrabbit-design,项目名称:jrd-londoncompany,代码行数:20,代码来源:class-walker-tertiary-menu.php

示例4: end_lvl

 public function end_lvl(&$output, $depth = 0, $args = array())
 {
     $item_output = '';
     parent::end_lvl($item_output, $depth, $args);
     if ($this->in_mega_menu) {
         // end of mega-menu parent - at top-level!
         if ($depth == 0) {
             $output .= apply_filters('bunyad_mega_menu_end_lvl', array('sub_menu' => $this->last_lvl, 'item' => $this->current_item));
             // unset
             $this->last_lvl = '';
             return;
         }
         $this->last_lvl .= $item_output;
         return;
     }
     $output .= $item_output;
 }
开发者ID:silverbux,项目名称:smartmag-magazine-wordpress,代码行数:17,代码来源:menu-walker.php

示例5: end_lvl

 /**
  * (non-PHPdoc)
  * @see Walker_Nav_Menu::end_lvl()
  * @param string $output Passed by reference. Used to append additional content.
  * @param int $depth Depth of page. Used for padding.
  */
 public function end_lvl(&$output, $depth)
 {
     parent::end_lvl(&$output, $depth);
     $this->remove_unwanted_chars(&$output);
 }
开发者ID:setola,项目名称:wordpress-theme-utils-classes,代码行数:11,代码来源:RemoveSpacesWalkerNavMenu.class.php

示例6: array

 function end_lvl(&$output, $depth = 0, $args = array())
 {
     parent::end_lvl($output, $depth, $args);
 }
开发者ID:WordPressKC,项目名称:wpkc-theme,代码行数:4,代码来源:functions.php

示例7: array

 function end_lvl(&$output, $depth = 0, $args = array())
 {
     parent::end_lvl($output, $depth, $args);
     $this->level--;
 }
开发者ID:RRZE-Webteam,项目名称:FAU-Einrichtungen,代码行数:5,代码来源:menu.php


注:本文中的Walker_Nav_Menu::end_lvl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。