How to Hide the "Snitch" Admin Menu

function plt_hide_snitch_menus() {
	//Hide the "Snitch" menu.
	remove_menu_page('edit.php?post_type=snitch');
}

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

Where do I put this code?