Label “show_option_all”
-
Can I suggest to replace, in “output_filter_for” function :
‘show_option_all’ => sprintf( __( ‘All %s’, ‘admin-taxonomy-filter’ ), $taxonomy->label ),
with :
‘show_option_all’ => sprintf( __( ‘%s’, ‘admin-taxonomy-filter’ ), $taxonomy->labels->all_items ),
In this way we can obtain a more precise label in the plural and according to the feminine or masculine languages (in french for example)
- The topic ‘Label “show_option_all”’ is closed to new replies.