Estou com problema para fazer rodar esse jquery porque quero usar a função wp_head() também e já vi varios tutos que não pode usar função wp_head com a função wp_enqueue_script()quero saber se tem solução para o meu problema.
...
<?php wp_enqueue_script('jquery'); ?>
<?php wp_head()?>
<script type="text/javascript">
$(document).ready(function(){
$("#menu ul li").hover(function(){
$(this).children(":hidden").slideDown();
},function(){
$(this).parent().find("ul").slideUp();
});
});
</script>
...