Php Wordpress Walker&x2014;如何向类别菜单项添加帖子数量?

Php Wordpress Walker&x2014;如何向类别菜单项添加帖子数量?,php,wordpress,menu,Php,Wordpress,Menu,我想为属于类别的菜单项添加帖子数量。 例如: 第1(5)类 第2(8)类 第3(2)类 等等 我编辑walker: 获取号码: 输出: $item\u输出=$item\u计数?“(“.count($item_count)。”):”; 结果是每个菜单项都有一个postscript,表示所有帖子的数量。 如何修改?使用 为您的实例更新: 使用来自的完整代码,我们在结束之前添加了一个if语句; }elseif($item->type=='taxonomy'){ $cat=get\u catego

我想为属于类别的菜单项添加帖子数量。 例如:

  • 第1(5)类
  • 第2(8)类
  • 第3(2)类
  • 等等

    我编辑walker:

    获取号码:

    输出:

    $item\u输出=$item\u计数?“(“.count($item_count)。”):”;
    
    结果是每个菜单项都有一个postscript,表示所有帖子的数量。 如何修改?

    使用

    
    
    为您的实例更新:

    使用来自的完整代码,我们在结束
    之前添加了一个if语句;
    }elseif($item->type=='taxonomy'){
    $cat=get\u category($item->object\u id);
    $item_output.='(“$cat->count.”);
    }否则{
    $item_输出='';
    }
    $item_output.=$args->after;
    $output.=apply_filters('walker_nav_menu_start_el'、$item_output、$item、$depth、$args);
    返回;
    }
    /*关闭
  • *注意:已关闭 *注2:$depth在此级别是“正确的” */ 函数结束(&$output、$item、$depth、$args) { $output.='
  • '; 返回; } /*将“hasChildren”属性添加到项 *代码来源:http://wordpress.org/support/topic/how-do-i-know-if-a-menu-item-has-children-or-is-a-leaf#post-3139633 */ 函数显示元素($element,&$children_elements,$max_depth,$depth=0,$args,&$output) { //检查此项是否有子项,并相应地设置$item->haschilders $element->hasChildren=isset($children\u elements[$element->ID])&&!empty($children\u elements[$element->ID]); //继续正常的行为 返回父元素::显示元素($element、$children\u elements、$max\u depth、$depth、$args、$output); } }
    如果您正在使用一些自定义的post分类法,您可以更改此分类法的代码:

    if ($item->type == 'taxonomy'){
        $term = get_term($item->object_id); 
        $item_output .= '<div class="meni-item-badge"> '.$term->count .'</div>'; 
    }
    
    if($item->type==“分类法”){
    $term=get\u term($item->object\u id);
    $item_output.=''.$term->count';
    }
    
    希望这能帮助别人!!
    问候马里奥

    谢谢你的回答!我如何在wp_nav_menu=>walker中包含wp_list_类别?您现在如何在菜单中获取类别?通过管理员?是的,通过管理员。我注册了1个菜单并连接
    $item_output .= $item_count ? ' <span>(' . count( $item_count ) . ')</span>' : '';
    
    <?php wp_list_categories(array('show_count' => true)); ?>
    
    if($item->type == 'taxonomy'){
                    $cat = get_category( $item->object_id);
                    $item_output .= ' ('.$cat->count.')</a>';
                }
    
    /* Bootstrap_Walker for Wordpress
         * Author: George Huger, Illuminati Karate, Inc
         * More Info: http://illuminatikarate.com/blog/bootstrap-walker-for-wordpress
         *
         * Formats a Wordpress menu to be used as a Bootstrap dropdown menu (http://getbootstrap.com).
         *
         * Specifically, it makes these changes to the normal Wordpress menu output to support Bootstrap:
         *
         *      - adds a 'dropdown' class to level-0 <li>'s which contain a dropdown
         *       - adds a 'dropdown-submenu' class to level-1 <li>'s which contain a dropdown
         *       - adds the 'dropdown-menu' class to level-1 and level-2 <ul>'s
         *
         * Supports menus up to 3 levels deep.
         *
         */
        class Bootstrap_Walker extends Walker_Nav_Menu
        {
    
            /* Start of the <ul>
             *
             * Note on $depth: Counterintuitively, $depth here means the "depth right before we start this menu".
             *                 So basically add one to what you'd expect it to be
             */
            function start_lvl(&$output, $depth)
            {
                $tabs = str_repeat("\t", $depth);
                // If we are about to start the first submenu, we need to give it a dropdown-menu class
                if ($depth == 0 || $depth == 1) { //really, level-1 or level-2, because $depth is misleading here (see note above)
                    $output .= "\n{$tabs}<ul class=\"dropdown-menu\">\n";
                } else {
                    $output .= "\n{$tabs}<ul>\n";
                }
                return;
            }
    
            /* End of the <ul>
             *
             * Note on $depth: Counterintuitively, $depth here means the "depth right before we start this menu".
             *                 So basically add one to what you'd expect it to be
             */
            function end_lvl(&$output, $depth)
            {
                if ($depth == 0) { // This is actually the end of the level-1 submenu ($depth is misleading here too!)
    
                    // we don't have anything special for Bootstrap, so we'll just leave an HTML comment for now
                    $output .= '<!--.dropdown-->';
                }
                $tabs = str_repeat("\t", $depth);
                $output .= "\n{$tabs}</ul>\n";
                return;
            }
    
            /* Output the <li> and the containing <a>
             * Note: $depth is "correct" at this level
             */
            function start_el(&$output, $item, $depth, $args)
            {
                global $wp_query;
                $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
                $class_names = $value = '';
                $classes = empty( $item->classes ) ? array() : (array) $item->classes;
    
                /* If this item has a dropdown menu, add the 'dropdown' class for Bootstrap */
                if ($item->hasChildren) {
                    $classes[] = 'dropdown';
                    // level-1 menus also need the 'dropdown-submenu' class
                    if($depth == 1) {
                        $classes[] = 'dropdown-submenu';
                    }
                }
    
                /* This is the stock Wordpress code that builds the <li> with all of its attributes */
                $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
                $class_names = ' class="' . esc_attr( $class_names ) . '"';
                $output .= $indent . '<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';
                $attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
                $attributes .= ! empty( $item->target )  ? ' target="' . esc_attr( $item->target     ) .'"' : '';
                $attributes .= ! empty( $item->xfn )        ? ' rel="'  . esc_attr( $item->xfn      ) .'"' : '';
                $attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url        ) .'"' : '';
                $item_output = $args->before;
    
                /* If this item has a dropdown menu, make clicking on this link toggle it */
                if ($item->hasChildren && $depth == 0) {
                    $item_output .= '<a'. $attributes .' class="dropdown-toggle" data-toggle="dropdown">';
                } else {
                    $item_output .= '<a'. $attributes .'>';
                }
    
                $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
    
                /* Output the actual caret for the user to click on to toggle the menu */
                if ($item->hasChildren && $depth == 0) {
                    $item_output .= '<b class="caret"></b></a>';
                }elseif($item->type == 'taxonomy'){
                    $cat = get_category( $item->object_id);
                    $item_output .= ' ('.$cat->count.')</a>';
                } else {
                    $item_output .= '</a>';
                }
    
                $item_output .= $args->after;
                $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
                return;
            }
    
            /* Close the <li>
             * Note: the <a> is already closed
             * Note 2: $depth is "correct" at this level
             */
            function end_el (&$output, $item, $depth, $args)
            {
                $output .= '</li>';
                return;
            }
    
            /* Add a 'hasChildren' property to the item
             * Code from: http://wordpress.org/support/topic/how-do-i-know-if-a-menu-item-has-children-or-is-a-leaf#post-3139633
             */
            function display_element ($element, &$children_elements, $max_depth, $depth = 0, $args, &$output)
            {
                // check whether this item has children, and set $item->hasChildren accordingly
                $element->hasChildren = isset($children_elements[$element->ID]) && !empty($children_elements[$element->ID]);
    
                // continue with normal behavior
                return parent::display_element($element, $children_elements, $max_depth, $depth, $args, $output);
            }
        }
    
    if ($item->type == 'taxonomy'){
        $term = get_term($item->object_id); 
        $item_output .= '<div class="meni-item-badge"> '.$term->count .'</div>'; 
    }