<?php

function post_type_thingy() {
	register_post_type('thingy', array('label' => __('Thingies'), 'public' => true ) );
	register_taxonomy_for_object_type('post_tag', 'thingy');
}

add_action('init', 'post_type_thingy');
