Skip to content

Instantly share code, notes, and snippets.

@pepegar
Created January 17, 2013 16:31
Show Gist options
  • Save pepegar/4557296 to your computer and use it in GitHub Desktop.
Save pepegar/4557296 to your computer and use it in GitHub Desktop.
marcar item de menu wordpress por nombre
$(document).ready(function() {
$('#menu-item-13 .menu-item>a').each(
function(index){
if ($(this).html() == 'Ecológicos'){
$(this).parent().addClass('current-menu-item')
}
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment