Opened 3 years ago
Closed 3 years ago
#12067 closed defect (bug) (fixed)
Categories and post_type with add_meta_box
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.0 |
| Component: | Taxonomy | Version: | 3.0 |
| Severity: | normal | Keywords: | dev-feedback |
| Cc: |
Description
When using post_type it is not possible to show the category box on the edit screen of this post_type because the add_meta_box for is_taxonomy_hierarchical is hard coded for 'post' instead of $post_type.
/wp-admin/edit-form-advanced.php Line 106:
add_meta_box($tax_name . 'div', $label, 'post_categories_meta_box', 'post', 'side', 'core', array( 'taxonomy' => $tax_name ));
Fix:
add_meta_box($tax_name . 'div', $label, 'post_categories_meta_box', $post_type, 'side', 'core', array( 'taxonomy' => $tax_name ));
Change History (1)
Note: See
TracTickets for help on using
tickets.

(In [12887]) Don't hardcode post type. Props typeomedia. fixes #12067