How to Hide the "External Media" Admin Menu

function plt_hide_external_media_menus() {
	//Hide the "Settings → External Media" menu.
	remove_submenu_page('options-general.php', 'WP_ExternalMedia');
}

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

Where do I put this code?