From f76ed758b8c27732f2abe80d5070136dd7f55cfe Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 4 Apr 2015 14:12:04 +0000 Subject: [PATCH] Fix Docblock syntax for the `taxonomy_parent_dropdown_args` filter. See [30998]. See #31888 git-svn-id: https://develop.svn.wordpress.org/trunk@32003 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/edit-tags.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/edit-tags.php b/src/wp-admin/edit-tags.php index af6872d94c..a75d7de46b 100644 --- a/src/wp-admin/edit-tags.php +++ b/src/wp-admin/edit-tags.php @@ -482,7 +482,7 @@ do_action( "{$taxonomy}_term_new_form_tag" ); * Filter the taxonomy parent drop-down on the Edit Term page. * * @since 3.7.0 - * @since 4.2.0 Added $context parameter. + * @since 4.2.0 Added `$context` parameter. * * @param array $dropdown_args { * An array of taxonomy parent drop-down arguments. @@ -500,6 +500,7 @@ do_action( "{$taxonomy}_term_new_form_tag" ); * @param string $context Filter context. Accepts 'new' or 'edit'. */ $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' ); + wp_dropdown_categories( $dropdown_args ); ?>