When viewing a list of all standard post or pages there are convient quick edit and bulk edit functions to edit author, template, status, dates, etc…
Is there an easy to enable similar quick edit and bulk edit tools on Custom Post types?
For example going to: ../wp-admin/edit.php?post_type=page select all checkboxes, select edit from drop down, click apply, you get options for Author, Parent, Template, Comments, Status, but none of those show up for ../wp-admin/edit.php?post_type=mycustomposttype
Make sure that
show_ui
andshow_in_menu
are set totrue
when the post type is enabled. then all the usual post/pages features will be available.See: http://codex.wordpress.org/Function_Reference/register_post_type
Also, make sure that those features are explicitly declared as by the CPT as supported.