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


PHP Walker_Nav_Menu::end_el方法代码示例

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


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

示例1: array

 function end_el(&$output, $item, $depth = 0, $args = array())
 {
     if (in_array('menu-has-children', $item->classes)) {
         $output .= '<i class="icon bonicons bi-angle-down menu-toggle"></i>';
     }
     parent::end_el($output, $item, $depth, $args);
 }
开发者ID:VadimSid,项目名称:thinkgreek,代码行数:7,代码来源:functions.php

示例2: array

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

示例3: end_el

    public function end_el(&$output, $item, $depth = 0, $args = array())
    {
        if ($depth === 0) {
            ob_start();
            ?>
			</div><!-- .columns.medium-4 -->

			<?php 
            if ($this->description) {
                ?>
				<div class="megamenu-description columns medium-8">
					<?php 
                echo do_shortcode(wpautop($this->description));
                ?>
				</div>
			<?php 
            }
            ?>
			</div><!-- .row -->
			</div><!-- .megamenu-container -->
			<?php 
            $output .= ob_get_clean();
            $this->description = false;
        }
        parent::end_el($output, $item, $depth, $args);
    }
开发者ID:JacksonCollege,项目名称:jc-theme-2015,代码行数:26,代码来源:class-jc-megamenu-walker-nav-menu.php

示例4: end_el

 /**
  * (non-PHPdoc)
  * @see Walker_Nav_Menu::end_el()
  * @param string $output Passed by reference. Used to append additional content.
  * @param object $item Page data object.
  * @param int $depth Depth of page.
  */
 public function end_el(&$output, $item, $depth)
 {
     setup_postdata(get_post($item->object_id));
     $this->tpl->set_markup('id', 'post_' . get_the_ID())->set_markup('image', get_the_post_thumbnail(get_the_ID(), 'thumbnail'))->set_markup('permalink', get_permalink())->set_markup('title', get_the_title())->set_markup('body', get_the_excerpt());
     wp_reset_postdata();
     $output .= $this->tpl->replace_markup();
     parent::end_el(&$output, $item, $depth);
 }
开发者ID:setola,项目名称:wordpress-theme-utils-classes,代码行数:15,代码来源:ShowTitleThumbExcerptWalkerNavMenu.class.php

示例5:

 function end_el(&$output, $item, $depth, $args)
 {
     if (!$args->dropdown) {
         parent::end_el($output, $item, $depth, $args);
     } else {
         $output .= "</option>\n";
     }
     // replace closing </li> with the option tag
 }
开发者ID:johnmanlove,项目名称:Bridgeland,代码行数:9,代码来源:advanced-menu-widget.php

示例6: array

 function end_el(&$output, $item, $depth = 0, $args = array())
 {
     $item_output = '';
     parent::end_el($item_output, $item, $depth, $args);
     if ($this->in_mega_menu && $depth > 0) {
         $this->last_lvl .= $item_output;
         return;
     }
     $output .= $item_output;
 }
开发者ID:silverbux,项目名称:smartmag-magazine-wordpress,代码行数:10,代码来源:menu-walker.php

示例7: end_el

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

示例8: array

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

示例9: array

 /**
  * @see Walker::end_el()
  * @since 3.0.0
  *
  * @param string $output Passed by reference. Used to append additional content.
  * @param object $item Page data object. Not used.
  * @param int $depth Depth of page. Not Used.
  */
 function end_el(&$output, $item, $depth = 0, $args = array())
 {
     if ($this->in_current_menu && $depth > 0) {
         parent::end_el($output, $item, $depth, $args);
     }
 }
开发者ID:jackrabbit-design,项目名称:jrd-londoncompany,代码行数:14,代码来源:class-walker-tertiary-menu.php

示例10: array

 function end_el(&$output, $item, $depth = 0, $args = array())
 {
     $output .= apply_filters('walker_nav_menu_end_el', '', $item, $depth, $args);
     if ($args->mega_wrapper_end && $depth == 0) {
         $output .= $args->mega_wrapper_end;
     }
     parent::end_el($output, $item, $depth, $args);
 }
开发者ID:peazz,项目名称:mega-menu,代码行数:8,代码来源:walker-nav-mega-menu.php


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