Código:
Pertenece a este código HTML$(function () { $('.pg').hover(function(){ $(this).children('li a').stop().animate({ opacity: 0.5,},200); }, function() { $(this).children('li a').stop().animate({ opacity: 1, },200); }); });
Código:
Ojalá me puedan ayudar que se me hace indispensable <ul class="pg"> <li><a href="<?php bloginfo('url'); ?>" title="Home">Inicio</a></li> <?php wp_list_pages('title_li=&depth=1'); ?> </ul>