Testing Suspended

Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.

How to Hide WordPress Expert Agent XML Feed Admin Menus

function plt_hide_wp_expert_agent_xml_feed_menus() {
	//Hide the "Settings → WordPress Expert Agent XML Feed" menu.
	remove_submenu_page('options-general.php', 'wp-expert-agent-xml-feed');
	//Hide the "Settings → Contact Us" menu.
	remove_submenu_page('options-general.php', 'wp-expert-agent-xml-feed-contact');
}

add_action('admin_menu', 'plt_hide_wp_expert_agent_xml_feed_menus', 1000000000);

Where do I put this code?