结合猜测和研究,我找到了答案!
使用我之前看的教程,我意识到我需要在类中使用单独的方法来添加描述并给子菜单ul
一个自定义类。
这是在子菜单之前在需要的地方添加描述的部分。
class My_Walker_Nav_Menu extends Walker_Nav_Menu {
function start_el(&$output, $item, $depth, $args) {
global $wp_query;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$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;
$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 .= "\n$indent<section class=\"sub-menu col-12\"><div class=\"nav-info col-8 right\"><p>" . $item->description . "</p></div>\n";
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
之后,我用这个方法给子菜单我的自定义类。
function start_lvl(&$output, $depth) {
$indent = str_repeat("\t", $depth);
$output .= "\n$indent<ul class=\"sub-menu-list col-4\">";
}
现在的问题是格式已关闭。一个额外的div
不断出现,我意识到我从来没有关闭过section
元素,在方法中使用它时通常会关闭start_lvl
。由于它在start_el
方法中,它没有关闭。所以,我在最后添加了这个,以确保ul
和section
都能正确关闭。
function end_lvl(&$output, $depth) {
$indent = str_repeat("\t", $depth);
$output .= "\n$indent</ul></section>";
}
}
现在描述显示为所需的。感谢@Iliya Reyzis 的意见。虽然它没有直接帮助我,但我很感激你试图帮助我。