I get this advice from you and it worked very well (the phone icon came to the menu). But I have a multisite so now the phone is on every menu. Is there any chance to order the phone icon only to the main site menu?
Here is your advice:
To add the phone icon directly in your main menu, simply add the following code in your child theme’s functions.php file:
add_filter( ‘wp_nav_menu_items’,‘add_menu_item’, 10, 2 );
function add_menu_item( $items, $args ) {
$items .= ’
return $items;
}