Changeset 30998 for trunk/src/wp-admin/edit-tags.php
- Timestamp:
- 12/29/2014 03:26:51 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r30842 r30998 479 479 * 480 480 * @since 3.7.0 481 * @since 4.1.0 Added $context parameter. 481 482 * 482 483 * @param array $dropdown_args { … … 493 494 * } 494 495 * @param string $taxonomy The taxonomy slug. 496 * @param string $context Filter context. Accepts 'new' or 'edit'. 495 497 */ 496 $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy );498 $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' ); 497 499 wp_dropdown_categories( $dropdown_args ); 498 500 ?>
Note: See TracChangeset
for help on using the changeset viewer.