diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php
index 9078a22..605083f 100644
|
a
|
b
|
function get_inline_data( $post ) { |
| 329 | 329 | foreach ( $taxonomy_names as $taxonomy_name ) { |
| 330 | 330 | $taxonomy = get_taxonomy( $taxonomy_name ); |
| 331 | 331 | |
| 332 | | if ( $taxonomy->hierarchical && $taxonomy->show_ui ) { |
| | 332 | if ( $taxonomy->hierarchical && $taxonomy->show_in_quick_edit ) { |
| 333 | 333 | |
| 334 | 334 | $terms = get_object_term_cache( $post->ID, $taxonomy_name ); |
| 335 | 335 | if ( false === $terms ) { |
| … |
… |
function get_inline_data( $post ) { |
| 340 | 340 | |
| 341 | 341 | echo '<div class="post_category" id="' . $taxonomy_name . '_' . $post->ID . '">' . implode( ',', $term_ids ) . '</div>'; |
| 342 | 342 | |
| 343 | | } elseif ( $taxonomy->show_ui ) { |
| | 343 | } elseif ( $taxonomy->show_in_quick_edit ) { |
| 344 | 344 | |
| 345 | 345 | $terms_to_edit = get_terms_to_edit( $post->ID, $taxonomy_name ); |
| 346 | 346 | if ( ! is_string( $terms_to_edit ) ) { |