转到inc/icon-functions.php
文件
有这样一个代码段。
function twentyseventeen_dropdown_icon_to_menu_link( $title, $item, $args, $depth ) {
if ( \'top\' === $args->theme_location ) {
foreach ( $item->classes as $value ) {
if ( \'menu-item-has-children\' === $value || \'page_item_has_children\' === $value ) {
$title = $title . twentyseventeen_get_svg( array( \'icon\' => \'\' ) );
}
}
}
return $title;
}
add_filter( \'nav_menu_item_title\', \'twentyseventeen_dropdown_icon_to_menu_link\', 10, 4 );
删除或注释此段。这将从nav菜单中删除svg下拉图标。