Changeset 50120 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 02/01/2021 02:11:57 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r50116 r50120 538 538 * @since 4.4.0 Added the `items_list_navigation` and `items_list` labels. 539 539 * @since 4.9.0 Added the `most_used` and `back_to_items` labels. 540 * @since 5.7.0 Added the `filter_by_item` label. 540 541 * 541 542 * @param WP_Taxonomy $tax Taxonomy object. … … 570 571 * @type string $no_terms Default 'No tags'/'No categories', used in the posts and media 571 572 * list tables. 573 * @type string $filter_by_item This label is only used for hierarchical taxonomies. Default 574 * 'Filter by category', used in the posts list table. 572 575 * @type string $items_list_navigation Label for the table pagination hidden heading. 573 576 * @type string $items_list Label for the table hidden heading. … … 605 608 'not_found' => array( __( 'No tags found.' ), __( 'No categories found.' ) ), 606 609 'no_terms' => array( __( 'No tags' ), __( 'No categories' ) ), 610 'filter_by_item' => array( null, __( 'Filter by category' ) ), 607 611 'items_list_navigation' => array( __( 'Tags list navigation' ), __( 'Categories list navigation' ) ), 608 612 'items_list' => array( __( 'Tags list' ), __( 'Categories list' ) ),
Note: See TracChangeset
for help on using the changeset viewer.