Ticket #24808: 24808.diff
| File 24808.diff, 774 bytes (added by , 12 years ago) |
|---|
-
wp-includes/taxonomy.php
300 300 * 301 301 * labels - An array of labels for this taxonomy. You can see accepted values in {@link get_taxonomy_labels()}. By default tag labels are used for non-hierarchical types and category labels for hierarchical ones. 302 302 * 303 * description - A short descriptive summary of what the taxonomy is for. Defaults to blank. 304 * 303 305 * @package WordPress 304 306 * @subpackage Taxonomy 305 307 * @since 2.3.0 … … 329 331 'labels' => array(), 330 332 'capabilities' => array(), 331 333 'show_in_nav_menus' => null, 334 'description' => '' 332 335 ); 333 336 $args = wp_parse_args($args, $defaults); 334 337