เตรียมพร้อมฟังก์ชั่นการใช้งาน แต่ไม่แน่ใจว่าเป็นทางออกที่ดีที่สุดหรือไม่
ฉันใช้วอล์คเกอร์ที่กำหนดเอง:
class Custom_Walker_Nav_Menu extends Walker_Nav_Menu {
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $wp_query;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$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, $depth ) );
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
$id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args, $depth );
$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
/**
* This counts the $menu_items and wraps if there are more then 5 items the
* remaining items into an extra <ul>
*/
global $menu_items;
$menu_items = substr_count($output,'<li');
if ($menu_items == 4) {
$output .= '<li class="tooltip"><span>...</span><ul class="tooltip-menu">';
}
$output .= $indent . '<li' . $id . $class_names .'>';
$atts = array();
$atts['title'] = ! empty( $item->attr_title ) ? $item->attr_title : '';
$atts['target'] = ! empty( $item->target ) ? $item->target : '';
$atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : '';
$atts['href'] = ! empty( $item->url ) ? $item->url : '';
$atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args, $depth );
$attributes = '';
foreach ( $atts as $attr => $value ) {
if ( ! empty( $value ) ) {
$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
$attributes .= ' ' . $attr . '="' . $value . '"';
}
}
$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 .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
ฟังก์ชั่นที่แสดงเมนูจริงมีดังต่อไปนี้:
<?php
wp_nav_menu( array( 'container' => false, 'theme_location' => 'navigation', 'fallback_cb' => 'custom_menu', 'walker' =>new Custom_Walker_Nav_Menu ) );
global $menu_items;
// This adds the closing </li> and </ul> if there are more then 4 items in the menu
if ($menu_items > 4) {
echo "</li></ul>";
}
?>
ฉันประกาศตัวแปรทั่วโลก $ menu_items และใช้มันเพื่อแสดงการปิด<li>
และ<ul>
- แท็ก อาจเป็นไปได้ที่จะทำเช่นนั้นในวอล์คเกอร์ที่กำหนดเอง แต่ฉันไม่พบที่ไหนและอย่างไร
ปัญหาสองประการ:
1. หากมีเพียง 5 รายการในเมนูมันจะตัดรายการสุดท้ายและเป็นรายการแม้ว่าจะไม่จำเป็นต้องใช้
- มันใช้งานได้หากผู้ใช้จัดสรรเมนูให้กับ theme_location จริงๆแล้ววอล์คเกอร์จะไม่ทำงานหาก wp_nav_menu แสดงฟังก์ชั่นสำรอง
Walker_Nav_Menu
และมีตัวอย่างในตัวแปลงสัญญาณ คุณหมายถึงอะไรกับ "ฉันไม่รู้วิธีสร้างวอล์คเกอร์"?