Hi there, I use x-pro on a multisite with BuddyPress and I would like to share the same Login/register Menu on each site (The menu und the pages exist on the main page.) I have learned that I could use this code below, but where should I implement it in the header builder.
switch_to_blog( ‘1’ ); //switch to the main site of the network (it has ID 1)
wp_nav_menu(
[‘menu’ => ‘16’, //grab menu that has ID 16 from it
]);
restore_current_blog(); //switch back to the current site
Thanks Jutta