Сделал кастомный Walker.
Сделал условия на вложенность:
liif ($depth == 1) {
$class_names = ' class="header-submenu__item"';
}
else {
$class_names = ' class="header-menu__item"';
}
$output .= $indent . '<li' . $id . $class_names . '>';
aif ($depth == 1) {
$attributes = ' class="header-submenu__link"';
}
else {
$attributes = ' class="header-menu__link"';
}
$item_output = $args->before;
$item_output .= '<a' . $attributes . '>';
$item_output .= $args->link_before . $title . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;