Ticket #34413: add-extra-info-to-register-taxonomy-comment.diff
File add-extra-info-to-register-taxonomy-comment.diff, 1.0 KB (added by , 9 years ago) |
---|
-
wp-includes/taxonomy-functions.php
260 260 } 261 261 262 262 /** 263 * Creates or modifiesa taxonomy object.263 * Creates a taxonomy object. 264 264 * 265 265 * Note: Do not use before the {@see 'init'} hook. 266 266 * 267 * A simple function for creating or modifyinga taxonomy object based on the267 * A simple function for creating a taxonomy object based on the 268 268 * parameters given. The function will accept an array (third optional 269 269 * parameter), along with strings for the taxonomy name and another string for 270 270 * the object type. 271 271 * 272 * Note: Subsequently calling register_taxonomy() with the same taxonomy key results in overwriting the previous registered object type with the latter one. 273 * 272 274 * @since 2.3.0 273 275 * @since 4.2.0 Introduced `show_in_quick_edit` argument. 274 276 * @since 4.4.0 The `show_ui` argument is now enforced on the term editing screen.