Soluzione 1: utilizzo di personal walker
Ho avuto qualche idea dall'aggiunta della classe span all'interno del tag anchor del link wp_nav_menu e ho apportato alcune modifiche per le tue esigenze.
1. Aggiungi prima questo codice qui sotto a names.php.
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. Aggiungi il codice qui sotto al tuo header.php
dove wp_nav_menu
è installato.
Spiegato di seguito è il codice in modo da installare il nuovo menu personalizzato in questo caso sarebbe Nav_Walker_Nav_Menu
.
<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary', 'walker' => new Nav_Walker_Nav_Menu() ) ); ?>
Spero che questo ti aiuti bene!
Soluzione 2: utilizzo wp_list_pages
Si prega di dare un'occhiata a questa pagina . Puoi vedere il loro frammento. Se metti gli span intorno ai tag dei link puoi usare link_before
elink_after
wp_list_pages("link_before=<span data-hover="link-text-here">&link_after=</span>");