Changeset 25948 for trunk/src/wp-admin/edit-form-advanced.php
- Timestamp:
- 10/27/2013 04:28:19 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-advanced.php
r25868 r25948 158 158 $tax_meta_box_id = $tax_name . 'div'; 159 159 160 add_meta_box( $tax_meta_box_id, $label, $taxonomy->meta_box_cb, null, 'side', 'core', array( 'taxonomy' => $tax_name ) ); 160 if ( false !== $taxonomy->meta_box_cb ) 161 add_meta_box( $tax_meta_box_id, $label, $taxonomy->meta_box_cb, null, 'side', 'core', array( 'taxonomy' => $tax_name ) ); 161 162 } 162 163
Note: See TracChangeset
for help on using the changeset viewer.