From 6ae500207765210ac535a987879d2db648d72604 Mon Sep 17 00:00:00 2001 From: asifpix Date: Sat, 2 Apr 2022 12:57:33 +0600 Subject: [PATCH] Fix: 2nd Level Menu Item not showing --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index f465306..2cf4705 100644 --- a/functions.php +++ b/functions.php @@ -46,7 +46,7 @@ function start_el(&$output, $item, $depth = 0, $args = null, $id = 0) $classes[] = 'nav-item'; $classes[] = 'nav-item-' . $item->ID; if ($depth && $args->walker->has_children) { - $classes[] = 'dropdown-menu dropdown-menu-end'; + $classes[] = 'dropdown-menu-child-item dropdown-menu-end'; } $class_names = join(' ', apply_filters('nav_menu_css_class', array_filter($classes), $item, $args));