Taxonomy: Remove unnecessary 'All categories' string on Edit Posts and Edit Links screens and use taxonomy's all_items
label instead.
Props johnbillion. Fixes #36049. git-svn-id: https://develop.svn.wordpress.org/trunk@36808 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ecc0b97857
commit
1b91fc660f
@ -103,7 +103,7 @@ class WP_Links_List_Table extends WP_List_Table {
|
|||||||
'selected' => $cat_id,
|
'selected' => $cat_id,
|
||||||
'name' => 'cat_id',
|
'name' => 'cat_id',
|
||||||
'taxonomy' => 'link_category',
|
'taxonomy' => 'link_category',
|
||||||
'show_option_all' => __( 'All categories' ),
|
'show_option_all' => get_taxonomy( 'link_category' )->labels->all_items,
|
||||||
'hide_empty' => true,
|
'hide_empty' => true,
|
||||||
'hierarchical' => 1,
|
'hierarchical' => 1,
|
||||||
'show_count' => 0,
|
'show_count' => 0,
|
||||||
|
@ -426,7 +426,7 @@ class WP_Posts_List_Table extends WP_List_Table {
|
|||||||
|
|
||||||
if ( is_object_in_taxonomy( $this->screen->post_type, 'category' ) ) {
|
if ( is_object_in_taxonomy( $this->screen->post_type, 'category' ) ) {
|
||||||
$dropdown_options = array(
|
$dropdown_options = array(
|
||||||
'show_option_all' => __( 'All categories' ),
|
'show_option_all' => get_taxonomy( 'category' )->labels->all_items,
|
||||||
'hide_empty' => 0,
|
'hide_empty' => 0,
|
||||||
'hierarchical' => 1,
|
'hierarchical' => 1,
|
||||||
'show_count' => 0,
|
'show_count' => 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user