How to Hide the "Protect Media" Admin Menu

function plt_hide_protectmedia_menus() {
	//Hide the "Media → Protect Media" menu.
	remove_submenu_page('upload.php', 'protect-media-config');
}

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

Where do I put this code?