Make WordPress Core


Ignore:
Timestamp:
05/14/2010 02:13:49 AM (16 years ago)
Author:
nbachiyski
Message:

Keep label as a quick way to set up a taxonomy/post type, without diving into the labels array. Deprecate singular_label while there. Props nacin. Fixes #13357

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/taxonomy.php

    r14614 r14619  
    211211 *
    212212 * Optional $args contents:
     213 *
     214 * label - Name of the taxonomy shown in the menu. Usually plural. If not set, labels['name'] will be used.
    213215 *
    214216 * hierarchical - has some defined purpose at other parts of the API and is a
     
    298300    $args['name'] = $taxonomy;
    299301    $args['object_type'] = (array) $object_type;
     302
    300303    $args['labels'] = get_taxonomy_labels( (object) $args );
    301    
    302     // we keep these two only for backwards compatibility
    303     // TODO: remove in 3.1 
    304304    $args['label'] = $args['labels']->name;
    305     $args['singular_label'] = $args['labels']->singular_name;
    306305   
    307306    $wp_taxonomies[$taxonomy] = (object) $args;
     
    315314 *
    316315 * Accepted keys of the label array in the taxonomy object:
    317  * - name - general name for the taxonomy, usually plural. Default is Post Tags/Categories
     316 * - name - general name for the taxonomy, usually plural. The same as and overriden by $tax->label. Default is Post Tags/Categories
    318317 * - singular_name - name for one object of this taxonomy. Default is Post Tag/Category
    319318 * - search_items - Default is Search Tags/Search Categories
Note: See TracChangeset for help on using the changeset viewer.