Come aggiungere <span> a ciascun collegamento di menu con testo di collegamento a data-attr?


8

Come posso ottenere qualcosa di simile qui sotto? Il mio codice è così:

wp_nav_menu(
     array(
       'theme_location' => 'header_menu',
       'container_id' => 'menu',
       'link_before' => '<span data-hover="link-text-here">',
       'link_after' => '</span>',
     )
  );

Voglio ottenere il risultato qui sotto:

<nav class="main-nav">
    <li><a href="#"><span data-hover="Home">Home</span></a></li>
    <li><a href="#"><span data-hover="Proyects">Proyects</span></a></li>
</nav>

Per favore consigliami.

Risposte:


4

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.phpdove 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_beforeelink_after

wp_list_pages("link_before=<span data-hover="link-text-here">&link_after=</span>");

si dice Avviso: cercare di ottenere la proprietà di un non oggetto in /Applications/MAMP/htdocs/wp.dev/wp-content/themes/eta-theme/functions.php sulla riga 98
Mohamed Rihan

Quindi, qual è il codice alla riga 98?
AddWeb Solution Pvt Ltd

$ item_output = $ args-> prima; $ item_output. = '<a'. $ attributi. '> <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;
Mohamed Rihan,

sembra ok ora. il suo uso di non ha aggiunto menu su dashbord .. grazie
Mohamed Rihan

8

Dalla versione 4.4.0 è stato aggiunto il filtro "nav_menu_item_args". Ciò consente di impostare gli attributi "link_before" e "link_after" per ciascun elemento.

add_filter('nav_menu_item_args', function ($args, $item, $depth) {
    if ($args->theme_location == 'header_menu') {
        $title             = apply_filters('the_title', $item->title, $item->ID);
        $args->link_before = '<span data-hover="' . $title . '">';
        $args->link_after  = '</span>';
    }
    return $args;
}, 10, 3);

Questo non è corretto .. di seguito viene emesso dopo aver usato il filtro ... <li id ​​= "menu-item-44" class = "menu-item menu-item-type-post_type menu-item-object-page-current-menu -item page_item page-item-24 current_page_item menu-item-44 "> <a href=" sandbox.test/about" aria-current="page"> <span data-hover = "About"> Informazioni su </span> </a> </li>
Daren Zammit,

2

Si prega di provare quanto segue:

wp_nav_menu(
 array(
   'theme_location' => 'header_menu',
   'container_id' => 'menu',
   'walker' => new description_walker()
 )
);

E aggiungi questo a functions.php:

class description_walker 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>';
        $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 );
        }
}

In questo modo puoi facilmente aggiungere un tag span ...


ma voglio i dati attr all'interno dell'intervallo
Mohamed Rihan,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.