Functions.php change only to the main site

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 .= ’

  • 12345678
  • ’;
    return $items;
    }

    Hi @Velkka33,

    To do that, you need to adjust the code and add a filter to it so the code will work only on specific site on your install. Please check this guide. Hope this helps.

    This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.