How to Hide the "Post Type Column Editor" Admin Menu

function plt_hide_post_type_column_editor_menus() {
	//Hide the "Post Type Column Editor" menu.
	remove_menu_page('ptcm-settings');
}

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

Where do I put this code?