Skip to content

Instantly share code, notes, and snippets.

@samholguin
Last active August 29, 2015 14:22
Show Gist options
  • Save samholguin/b045191af83eb4eac545 to your computer and use it in GitHub Desktop.
Save samholguin/b045191af83eb4eac545 to your computer and use it in GitHub Desktop.
WordPress - Filter [ wp_nav_menu_objects ] - Modify WordPress nav menu objects
/**
* Modify WordPress nav menu objects
*
* @param array $menu_items
* @return array
*/
function shgist_nav_menu_item_classes( $menu_items ) {
foreach ( (array) $menu_items as $key => $menu_item ) {
// Work on menu item objects
}
return $menu_items;
}
add_filter( 'wp_nav_menu_objects', 'shgist_nav_menu_item_classes', 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment