ワードプレスメニューに階層的な親投稿の子投稿の数を表示しようとしています。そこで、親投稿をメニューに追加します。明らかに、カスタム ウォーカーを使用する必要がありますが、どこから始めればよいかわかりません。
すなわち:
Menu Item (8)
Menu Item (15)
Menu Item (7)
ワードプレスメニューに階層的な親投稿の子投稿の数を表示しようとしています。そこで、親投稿をメニューに追加します。明らかに、カスタム ウォーカーを使用する必要がありますが、どこから始めればよいかわかりません。
すなわち:
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' ); ?>