Changeset 30546 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 11/24/2014 06:30:19 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r30494 r30546 156 156 * $wp_taxonomies global variable. 157 157 * 158 * <code><?php $taxonomies = get_object_taxonomies('post'); ?></code>Should159 * result in <code>Array('category', 'post_tag')</code>158 * `<?php $taxonomies = get_object_taxonomies('post'); ?>` Should 159 * result in `Array( 'category', 'post_tag' )` 160 160 * 161 161 * @since 2.3.0 … … 435 435 * 436 436 * Accepted keys of the label array in the taxonomy object: 437 * 437 438 * - name - general name for the taxonomy, usually plural. The same as and overridden by $tax->label. Default is Tags/Categories 438 439 * - singular_name - name for one object of this taxonomy. Default is Tag/Category … … 441 442 * - all_items - Default is All Tags/All Categories 442 443 * - parent_item - This string isn't used on non-hierarchical taxonomies. In hierarchical ones the default is Parent Category 443 * - parent_item_colon - The same as <code>parent_item</code>, but with colon <code>:</code>in the end444 * - parent_item_colon - The same as `parent_item`, but with colon `:ё in the end 444 445 * - edit_item - Default is Edit Tag/Edit Category 445 446 * - view_item - Default is View Tag/View Category
Note: See TracChangeset
for help on using the changeset viewer.