How to Hide the "WP Image CAPTCHA" Admin Menu

function plt_hide_contact_form_7_image_captcha_menus() {
	//Hide the "WP Image CAPTCHA" menu.
	remove_menu_page('cf7ic_settings_menu');
}

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

Where do I put this code?