¿Desea resaltar la página actual en la navegación o en el menú de la barra lateral? Resaltar la página actual facilita la navegación.
Las funciones de menú de WordPress (wp_nav_menu, wp_list_pages) añaden automáticamente la clase current_page_item al li que contiene el enlace activo. Así que todo lo que tenemos que hacer es utilizar la misma clase para resaltar la página actual.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo style.css de tu tema:
/* Highlight using list element */ li.current_page_item{ background:#999; color:#fff; } /* Highlight using link element */ li.current_page_item a{ text-decoration:underline; background:#666; }
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si le gustó este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: Los mejores constructores de páginas de WordPress (Comparados).
where do i find the “theme’s style.css file” on the wordpress free version?
Thank you. I have looked in a few places, but your solution worked. I really appreciate it!
Hey Robert, glad our solution worked for you.
Please follow us on Facebook and Twitter for more interesting guides. 🙂
Work’s fine thanks !
This code works if menu has one tear. Otherwise it highlights first level link and all sub categories in it.
For example you would be at “home>about>news” and it would highlight all “home” categories instead of just “news”.
My theme adds the CSS class `.current-menu-item`.
Might be different depending on the theme, but the process is still the same.
works like a charm, and saved me some valuable time. Thanks
Thank you so much!!!!
halo sir, its good but i want to change link color not back ground color plz help me
The color would be controlled by the
color
property, such as:li.current_page_item a{
color:#666;
}
i think you only need to add this to your CSS and not the functions.php page. It worked just fine in my CSS.
Thank you
Thanks, the snippet has now been updated.