Hi fireproofsocks,
First of all, thank you for this great plugin! I like it so much, that I switched from the Custom Post Type UI plugin to yours. I have some remarks/tips however to make it even better:
First of all, what crashintoty suggests would be very welcome indeed. Renaming the post_type name isn't only very user friendly, but it will make switching between plugins even easier.
Another thing; your plugin doesn't seem to support a dash in it's post_type name. When you enter something like 'custom-post' it will save it as 'custom_post'. If you happen to have created a custom post type called 'custom-post' with another plugin, migrating gets very time consuming.
The last thing I'm really missing is the show_in_menu parameter. If you want to group certain custom post types in the admin menu, this parameter can be very convenient. Right now I have to add this function to my custom post type manually in my functions.php file like this:
add_action('init', 'codex_custom_init');
function codex_custom_init() {
$labels = array(
'menu_name' => 'Child post type'
);
$args = array(
'labels' => $labels,
'show_ui' => true,
'show_in_menu' => 'edit.php?post_type=parent-post-type'
);
register_post_type('child-post-type',$args);
}
Thanks for your work so far!
Cheers, Toine