How to Hide the "MTCaptcha" Admin Menu

function plt_hide_mtcaptcha_menus() {
	//Hide the "Settings → MTCaptcha" menu.
	remove_submenu_page('options-general.php', 'mt_options');
}

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

Where do I put this code?