Descripción de los elementos del menúWalker personalizado para wp_nav_menu ()
3 respuestas
- votos
-
- 2015-02-23
Dado que WordPress 3.0 ,no necesita un andadorpersonalizado ¡más!
Existeelfiltro
walker_nav_menu_start_el
,consulte https://developer.wordpress.org/reference/hooks/walker_nav_menu_start_el/Ejemplo:
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);
-
¡Agradable!Estaba usando la soluciónnav walker de @toscho,peroesmuchomás limpia yfácil demantener. Esta debería ser la respuesta aceptada,unaprácticamuchomejor.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
Estonoesni mejorni peor que otras sugerencias;es simplemente diferente.Tambiénesbreve y dulce.
En lugar de utilizarel campo de descripción como sugiere @toscho ,puede completarel campo "Título"encadaelemento delmenú coneltexto que desee y luego useeste CSS:
.menu-item a:after { content: attr(title); }
También seríafácil usar jQuery para agregarlo,peroeltextoes lo suficientemente ornamental comopara que CSSparezca apropiado..
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
Tambiénpuedeescribir unelemento
<span>
después de laetiqueta denavegaciónen losmenús y usar la siguiente regla CSSpara cambiar su configuración dedisplay
(esinline
por defecto):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}
-
Bueno,es una solución simple yfácil,pero ¿por qué usar `span` si lobloquea detodosmodos?xhtml/html4nopermitebloquearelementos dentro de losenlaces,html5,sinembargo,sí,así que solo usa `div`,¡ynonecesitasningún 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
Elmenúnormal de Wordpress se ve así:
Pero he vistomuchaspáginas con descripciones debajo deestosenlaces:
¿Cómo lograrlo?
(Quiero que sea lafunciónprincipal detodosmistemas,así queno complementos,solo quiero saber cómo se hace)