2

我希望在 wordpress 菜单中显示分层父帖子的子帖子数量。所以,我会将父帖子添加到菜单中。显然,我将不得不使用定制的 Walker,但我不确定从哪里开始。

IE:

Menu Item (8)
Menu Item (15)
Menu Item (7)
4

1 回答 1

4

WordPress 通过名为_menu_item_menu_item_parent. 因此,您可以通过以下方式查询子菜单项:

class add_child_numbers_walker extends Walker_Nav_Menu {
    function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
        global $wp_query;
        $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

        $class_names = '';

        $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 ), $item, $args ) );
        $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';

        $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );
        $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';

        $output .= $indent . '<li' . $id . $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        ) .'"' : '';

        $submenus = $depth == 0 ? get_posts( array( 'post_type' => 'nav_menu_item', 'numberposts' => -1, 'orderby' => 'menu_order', 'order' => 'ASC', 'meta_query' => array( array( 'key' => '_menu_item_menu_item_parent', 'value' => $item->ID ) ) ) ) : false;

        $item_output = $args->before;
        $item_output .= '<a'. $attributes .'>';
        $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
        $item_output .= '</a>';
        $item_output .= $submenus ? ' <span class="submenus-count">(' . count( $submenus ) . ')</span>' : '';
        $item_output .= $args->after;

        $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    }
}

此walker 将<span class="submenus-count">(X)</span>在所有顶级链接之后添加。

你可以这样调用菜单: wp_nav_menu(array('theme_location' => 'theme-location', 'container' => '', 'walker' => new add_child_numbers_walker()));


既然你说你想做一个自定义功能来显示你的菜单,这里有一个简单的解决方案:

function my_custom_nav( $post_type = 'page' ) {
    $current = is_singular() ? get_the_ID() : false;

    $posts = get_posts( array( 'post_type' => $post_type, 'numberposts' => -1, 'orderby' => 'menu_order', 'order' => 'ASC', 'child_of' => 0, 'post_parent' => 0 ) );
    if ( $posts ) {
        echo '<ul class="custom-nav ' . esc_attr( $post_type ) . '-nav">';
        foreach ($posts as $p) {
            $child_posts = get_posts( array( 'post_type' => $post_type, 'numberposts' => -1, 'orderby' => 'menu_order', 'order' => 'ASC', 'child_of' => $p->ID, 'post_parent' => $p->ID, 'fields' => 'ids' ) );
            $child = $child_posts ? ' <span class="submenus-count">(' . count( $child_posts ) . ')</span>' : '';
            $class = '';
            if ( $p->ID == $current ) {
                $class = 'current_page_item';
            } elseif ( $current && in_array( $current, $child_posts ) ) {
                $class = 'current_page_ancestor';
            }
            $class = '' != $class ? ' class="' . $class . '"' : '';
            echo '<li' . $class . '><a href="' . get_permalink( $p->ID ) . '">' . get_the_title( $p->ID ) . '</a>' . $child . '</li>';
        }
        echo '</ul>';
    }

}

然后,您可以像这样显示您的菜单:

<?php my_custom_nav( 'custom_post_type' ); ?>
于 2012-11-28T18:31:45.553 回答