[wp-trac] [WordPress Trac] #16793: Bulk inline post edit doesn't show categories or tags if the CPT doesn't support titles

WordPress Trac wp-trac at lists.automattic.com
Mon Mar 7 23:24:57 UTC 2011


#16793: Bulk inline post edit doesn't show categories or tags if the CPT doesn't
support titles
----------------------------+----------------------------
 Reporter:  scribu          |      Owner:
     Type:  defect (bug)    |     Status:  new
 Priority:  normal          |  Milestone:  Future Release
Component:  Administration  |    Version:
 Severity:  normal          |   Keywords:  has-patch
----------------------------+----------------------------
 1. Register a CPT that doesn't support titles:

 {{{
 add_action( 'init', function() {
         register_post_type( 'foo', array(
                 'show_ui' => true,
                 'label' => 'Foo',
                 'supports' => array( 'editor' ),
                 'taxonomies' => array( 'category', 'post_tag' )
         ) );
 } );
 }}}

 2. Create a 'foo' post.

 3. Go to wp-admin/edit.php?post_type=foo and choose the 'Edit' bulk
 action.

 Expected behaviour: shows the category checkbox list and the tag textarea.

 Actual behaviour: only the status dropdown is shown.

-- 
Ticket URL: <http://core.trac.wordpress.org/ticket/16793>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list