How to Hide the "Byteplant Phone Validator" Admin Menu

function plt_hide_byteplant_phone_validator_menus() {
	//Hide the "Settings → Byteplant Phone Validator" menu.
	remove_submenu_page('options-general.php', 'byteplant_phone_validator');
}

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

Where do I put this code?