diff --git src/wp-admin/edit-tags.php src/wp-admin/edit-tags.php
index 6ff9e37..5c1130f 100644
|
|
|
if ( 'post' != $post_type ) { |
| 52 | 52 | $submenu_file = "edit-tags.php?taxonomy=$taxonomy"; |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | | add_screen_option( 'per_page', array( 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page' ) ); |
| | 55 | if( 'edit' !== $wp_list_table->current_action() ) { |
| | 56 | add_screen_option( 'per_page', array( 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page' ) ); |
| | 57 | } |
| 56 | 58 | |
| 57 | 59 | get_current_screen()->set_screen_reader_content( array( |
| 58 | 60 | 'heading_pagination' => $tax->labels->items_list_navigation, |
diff --git src/wp-admin/includes/class-wp-terms-list-table.php src/wp-admin/includes/class-wp-terms-list-table.php
index 765b1a3..ee82bda 100644
|
|
|
class WP_Terms_List_Table extends WP_List_Table { |
| 185 | 185 | $columns['posts'] = _x( 'Count', 'Number/count of items' ); |
| 186 | 186 | } |
| 187 | 187 | |
| | 188 | if ( 'edit' === $this->current_action() ) { |
| | 189 | return array(); |
| | 190 | } |
| | 191 | |
| 188 | 192 | return $columns; |
| 189 | 193 | } |
| 190 | 194 | |