[wp-trac] [WordPress Trac] #15837: Custom Taxonomy: Admin Menu Not Selecting Current Item
WordPress Trac
wp-trac at lists.automattic.com
Thu Dec 16 18:02:54 UTC 2010
#15837: Custom Taxonomy: Admin Menu Not Selecting Current Item
--------------------------+------------------------------
Reporter: sterlo | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: General | Version:
Severity: normal | Resolution:
Keywords: |
--------------------------+------------------------------
Comment (by sterlo):
Version of WordPress is Version 3.0.3 - I can attempt to try the latest
beta.
Here's the post type registration:
{{{
register_post_type(
'staff_listing',
array(
'labels' => array(
'name' => 'Staff Listings',
'add_new_item' => 'Add a Staff Member',
'new_item' => 'Staff Member',
'add_new' => 'Add a Staff Member',
'singular_name' => 'Staff Member'
),
'public' => false,
'publicly_queryable' => true,
'show_ui' => true,
'hierarchical' => false,
'rewrite' => array(
'slug' => 'staff',
'with_front' => false
),
'query_var' => 'staff',
'supports' => array(
'title',
'editor',
'thumbnail',
'comments',
'revisions'
)
)
);
}}}
--
Ticket URL: <http://core.trac.wordpress.org/ticket/15837#comment:3>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list