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 the "CPT Auto Menu" Admin Menu

function plt_hide_custom_post_type_auto_menu_menus() {
	//Hide the "CPT Auto Menu" menu.
	remove_menu_page('cpt_auto_menu');
}

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

Where do I put this code?