Changeset 32933 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 06/25/2015 12:15:46 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r32910 r32933 473 473 * - choose_from_most_used - This string isn't used on hierarchical taxonomies. Default is "Choose from the most used tags", used in the meta box. 474 474 * - not_found - Default is "No tags found"/"No categories found", used in the meta box and taxonomy list table. 475 * - no_terms - Default is "No tags"/"No categories", used in the posts and media list tables. 475 476 * 476 477 * Above, the first default value is for non-hierarchical taxonomies (like tags) and the second one is for hierarchical taxonomies (like categories). … … 479 480 * 480 481 * @since 3.0.0 482 * @since 4.3.0 Added the `no_terms` label. 481 483 * 482 484 * @param object $tax Taxonomy object. … … 509 511 'choose_from_most_used' => array( __( 'Choose from the most used tags' ), null ), 510 512 'not_found' => array( __( 'No tags found.' ), __( 'No categories found.' ) ), 513 'no_terms' => array( __( 'No tags' ), __( 'No categories' ) ), 511 514 ); 512 515 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
Note: See TracChangeset
for help on using the changeset viewer.