I have a custom post type in my wordpress theme. I want to add a custom class to the nav menu for the pages created in that custom post type. I read that you can use a filter hook: “nav_menu_css_class”, but my php chops are pretty limited. How do I set up that filter hook to apply only to my custom post type pages in the nav menu and give them a custom class?
Leave a Reply
You must be logged in to post a comment.
here is a simply example:
just change
CUSTOM_TYPE_NAME
to the name of your custom post type andNew_Class
with the name of your class and paste this snippet in your theme’s functions.php file.