Descrizione delle voci di menu?Walker personalizzato per wp_nav_menu ()
3 risposta
- voti
-
- 2015-02-23
Poiché WordPress 3.0 ,non haibisogno di un deambulatorepersonalizzatopiù!
Esisteilfiltro
walker_nav_menu_start_el
,vedere https://developer.wordpress.org/reference/hooks/walker_nav_menu_start_el/Esempio:
function add_description_to_menu($item_output, $item, $depth, $args) { if (strlen($item->description) > 0 ) { // append description after link $item_output .= sprintf('<span class="description">%s</span>', esc_html($item->description)); // insert description as last item *in* link ($input_output ends with "</a>{$args->after}") //$item_output = substr($item_output, 0, -strlen("</a>{$args->after}")) . sprintf('<span class="description">%s</span >', esc_html($item->description)) . "</a>{$args->after}"; } return $item_output; } add_filter('walker_nav_menu_start_el', 'add_description_to_menu', 10, 4);
Since WordPress 3.0, you don't need a custom walker anymore!
There is the
walker_nav_menu_start_el
filter, see https://developer.wordpress.org/reference/hooks/walker_nav_menu_start_el/Example:
function add_description_to_menu($item_output, $item, $depth, $args) { if (strlen($item->description) > 0 ) { // append description after link $item_output .= sprintf('<span class="description">%s</span>', esc_html($item->description)); // insert description as last item *in* link ($input_output ends with "</a>{$args->after}") //$item_output = substr($item_output, 0, -strlen("</a>{$args->after}")) . sprintf('<span class="description">%s</span >', esc_html($item->description)) . "</a>{$args->after}"; } return $item_output; } add_filter('walker_nav_menu_start_el', 'add_description_to_menu', 10, 4);
-
Bello!Stavo usando la soluzionenav walker di @toscho,ma èmoltopiùpulitae piùfacile damantenere Questa dovrebbeessere la risposta accettata,unapraticamoltomigliore.Nice! I was using the nav walker solution by @toscho, but this is much cleaner and easier to maintain.This should be the accepted answer, much better practice.
- 1
- 2015-07-08
- Ronaldt
-
- 2012-04-18
Questonon ènémigliorenépeggiore di altri suggerimenti;è solo diverso.È anchebrevee dolce.
Invece di utilizzareil campo della descrizione come suggerisce @toscho ,potresti compilareil campo "Titolo" suogni voce dimenu coniltesto che desideri,quindi utilizza questo CSS:
.menu-item a:after { content: attr(title); }
Sarebbe anchefacile usare jQuery per aggiungerlo,mailtesto è abbastanza ornamentale da sembrare appropriatoil CSS.
This isn't better or worse than other suggestions; it's just different. It's short and sweet too.
Rather than using the description field as @toscho suggests, you could fill in the "Title" field on each menu item with the text you want, and then use this CSS:
.menu-item a:after { content: attr(title); }
It would also be easy to use jQuery to append it, but the text is ornamental enough that CSS seems appropriate.
-
- 2011-09-08
Puoi anche scrivere unelemento
<span>
dopo l'etichetta dinavigazionenei menue utilizzare la seguente regola CSSpermodificare la relativaimpostazionedisplay
(èinline
perimpostazionepredefinita):span {display:block}
You can also write a
<span>
element after the navigation label in menus and use the following CSS rule to change itsdisplay
setting (it'sinline
by default):span {display:block}
-
È una soluzione semplicee facile,maperché usare "span" se lofaibloccare comunque?xhtml/html4non consenteglielementi diblocco all'interno dei collegamenti,tuttavia html5 lofa,quindi usa semplicemente `div`e non c'èbisogno di alcun CSS!Well its a simple and easy solution but why use `span` if you make it block anyway? xhtml/html4 not allows block elements inside links, html5 however does, so just use `div`, and no need for any css!
- 2
- 2013-03-05
- James Mitch
Ilnormalemenu di Wordpress hail seguente aspetto:
Ma ho vistomoltepagine con descrizioni sotto questi link:
Come ottenerlo?
(Voglio che sia lafunzioneprincipale dituttii mieitemi,quindiniente pluginperfavore,voglio solo sapere come èfatto)