Giải pháp 1: Sử dụng tùy chỉnh walker
Tôi có một số ý tưởng từ việc thêm lớp span bên trong thẻ neo liên kết wp_nav_menu và thực hiện một số thay đổi cho yêu cầu của bạn.
1. Thêm mã này dưới đây vào hàm.php của bạn trước.
class Nav_Walker_Nav_Menu extends Walker_Nav_Menu{
function start_el(&$output, $item, $depth, $args){
global $wp_query;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$class_names = $value = '';
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
$class_names = ' class="'. esc_attr( $class_names ) . '"';
$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 ) .'"' : '';
$description = ! empty( $item->description ) ? '<span>'.esc_attr( $item->description ).'</span>' : '';
$item_output = $args->before;
$item_output .= '<a'. $attributes .'><span data-hover="'. $item->title .'">';
$item_output .=$args->link_before .apply_filters( 'the_title', $item->title, $item->ID );
$item_output .= $description.$args->link_after;
$item_output .= '</span></a>';
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
2. Thêm mã dưới đây vào header.php
nơi bạn wp_nav_menu
đã cài đặt.
Giải thích dưới đây là mã để nó cài đặt menu tùy chỉnh mới trong trường hợp này Nav_Walker_Nav_Menu
.
<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary', 'walker' => new Nav_Walker_Nav_Menu() ) ); ?>
Hy vọng điều này sẽ giúp bạn tốt!
Giải pháp 2: Sử dụng wp_list_pages
Vui lòng kiểm tra trang này . Bạn có thể thấy đoạn trích của họ. Nếu bạn đặt các nhịp xung quanh các thẻ liên kết, bạn có thể sử dụng link_before
vàlink_after
wp_list_pages("link_before=<span data-hover="link-text-here">&link_after=</span>");