diff --git wp-includes/taxonomy.php wp-includes/taxonomy.php
index 2f2ba6f..7d31d8c 100644
|
|
|
function is_taxonomy_hierarchical($taxonomy) {
|
| 289 | 289 | * * If not set, the default is inherited from public. |
| 290 | 290 | * - show_tagcloud - Whether to list the taxonomy in the Tag Cloud Widget. |
| 291 | 291 | * * If not set, the default is inherited from show_ui. |
| | 292 | * - show_admin_column - Whether to display a column for the taxonomy on its post type listing screens. |
| | 293 | * * Defaults to false. |
| 292 | 294 | * - meta_box_cb - Provide a callback function for the meta box display. |
| 293 | 295 | * * If not set, defaults to post_categories_meta_box for hierarchical taxonomies |
| 294 | 296 | * and post_tags_meta_box for non-hierarchical. |
| … |
… |
function register_taxonomy( $taxonomy, $object_type, $args = array() ) {
|
| 336 | 338 | 'show_in_menu' => null, |
| 337 | 339 | 'show_in_nav_menus' => null, |
| 338 | 340 | 'show_tagcloud' => null, |
| | 341 | 'show_admin_column' => false, |
| 339 | 342 | 'meta_box_cb' => null, |
| 340 | 343 | 'capabilities' => array(), |
| 341 | 344 | 'rewrite' => true, |