How to Hide the "Advanced Export" Admin Menu

function plt_hide_advanced_export_for_wp_wpmu_menus() {
	//Hide the "Tools → Advanced Export" menu.
	remove_submenu_page('tools.php', 'ra_export');
}

add_action('admin_menu', 'plt_hide_advanced_export_for_wp_wpmu_menus', 11);

Where do I put this code?