Changeset 34891 for trunk/src/wp-includes/taxonomy-functions.php
- Timestamp:
- 10/07/2015 01:27:01 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/taxonomy-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy-functions.php
r34884 r34891 496 496 * - not_found - Default is "No tags found"/"No categories found", used in the meta box and taxonomy list table. 497 497 * - no_terms - Default is "No tags"/"No categories", used in the posts and media list tables. 498 * - pagination - String for the table pagination hidden heading. 499 * - list - String for the table hidden heading. 498 500 * 499 501 * Above, the first default value is for non-hierarchical taxonomies (like tags) and the second one is for hierarchical taxonomies (like categories). … … 535 537 'not_found' => array( __( 'No tags found.' ), __( 'No categories found.' ) ), 536 538 'no_terms' => array( __( 'No tags' ), __( 'No categories' ) ), 539 'pagination' => array( __( 'Tags list navigation' ), __( 'Categories list navigation' ) ), 540 'list' => array( __( 'Tags list' ), __( 'Categories list' ) ), 537 541 ); 538 542 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
Note: See TracChangeset
for help on using the changeset viewer.