gpt4 book ai didi

用于子帖子数量的 Wordpress Walker 菜单

转载 作者:行者123 更新时间:2023-12-05 03:15:43 25 4
gpt4 key购买 nike

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

即:

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

最佳答案

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 );
}
}

这个助行器会添加<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' ); ?>

关于用于子帖子数量的 Wordpress Walker 菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13611586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com