Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Richzendy/061ad8c460beb6eae4d5 to your computer and use it in GitHub Desktop.
Save Richzendy/061ad8c460beb6eae4d5 to your computer and use it in GitHub Desktop.
Add CSS class to children menu item on WordPress
// Add CSS class to children menu item on WordPress
add_filter( 'wp_nav_menu_objects', 'add_menu_parent_class' );
function add_menu_parent_class( $items ) {
foreach ( $items as $item ) {
if ( $item->menu_item_parent && $item->menu_item_parent > 0 ) {
$item->classes[] = 'menu-children-item';
}
}
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment