I’m trying add menu page in multisite (settings will be global for all blogs).
Current code created in plugin and activated in network
function wpdocs_register_my_custom_menu_page() {
add_menu_page(
__( 'Custom Menu Title', 'textdomain' ),
'custom menu',
'manage_options',
'myplugin/myplugin-admin.php',
'');
}
add_action( 'admin_menu', 'wpdocs_register_my_custom_menu_page' );
But it show only in blog menu, I think should be different action hook, maybe someone can help me ?