Ticket #15576: 15576.4.patch
| File 15576.4.patch, 1.1 KB (added by , 14 years ago) |
|---|
-
wp-admin/edit-tags.php
36 36 $submenu_file = "edit-tags.php?taxonomy=$taxonomy"; 37 37 } 38 38 39 add_screen_option( 'per_page', array( 'label' => $title, 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page' ) );39 add_screen_option( 'per_page', array( 'label' => __( 'items' ), 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page' ) ); 40 40 41 41 switch ( $wp_list_table->current_action() ) { 42 42 -
wp-admin/edit.php
215 215 ); 216 216 } 217 217 218 add_screen_option( 'per_page', array( 'label' => $title, 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) );218 add_screen_option( 'per_page', array( 'label' => __( 'items' ), 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) ); 219 219 220 220 require_once('./admin-header.php'); 221 221 ?>