How to Hide the "Accelvia Protection" Admin Menu

function plt_hide_accelvia_content_protection_menus() {
	//Hide the "Settings → Accelvia Protection" menu.
	remove_submenu_page('options-general.php', 'accelvia-protection');
}

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

Where do I put this code?