Changeset 13277
- Timestamp:
- 02/21/2010 02:55:07 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r13268 r13277 188 188 * (?$query_var=$term); default will use $taxonomy as query var. 189 189 * 190 * public - If the taxonomy should be publically queryable; //@TODO not implemented. 191 * defaults to true. 192 * 193 * show_ui - If the WordPress UI admin tags UI should apply to this taxonomy; 194 * defaults to public. 195 * 196 * show_tagcloud - false to prevent the taxonomy being listed in the Tag Cloud Widget; 197 * defaults to show_ui which defalts to public. 198 * 190 199 * @package WordPress 191 200 * @subpackage Taxonomy … … 212 221 'show_ui' => null, 213 222 'label' => null, 223 'show_tagcloud' => null, 214 224 '_builtin' => false 215 225 ); … … 236 246 if ( is_null($args['show_ui']) ) 237 247 $args['show_ui'] = $args['public']; 248 249 if ( is_null($args['show_tagcloud']) ) 250 $args['show_tagcloud'] = $args['show_ui']; 238 251 239 252 if ( is_null($args['label'] ) )
Note: See TracChangeset
for help on using the changeset viewer.