is there a way to add a class to every nth item in a menu using wp_nav_menu?

Trying to create columns but need to add a ‘last’ class to the 3rd item.

cheers! Dc

4 Answers
4

You can use jQuery to do that. Try this in your header :

$(document).ready(function() {
    $("#mymenu li:nth-child(3n+3)").addClass("last");
});

Note : for this to work you need to have enqueued jQuery.

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *