From e80395227893ed6469a69aeec258fdb21b3f4050 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 21 Aug 2015 04:54:00 +0000 Subject: [PATCH] Docs: Fix some minor inline documentation syntax issues in the hook docs for the `post_edit_category_parent_dropdown_args` filter, introduced in [33682]. See #32246. See #33026. git-svn-id: https://develop.svn.wordpress.org/trunk@33686 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/meta-boxes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/meta-boxes.php b/src/wp-admin/includes/meta-boxes.php index 5efa971aff..e0ac4041d1 100644 --- a/src/wp-admin/includes/meta-boxes.php +++ b/src/wp-admin/includes/meta-boxes.php @@ -521,7 +521,7 @@ function post_categories_meta_box( $post, $box ) { ); /** - * Filters the arguments for the taxonomy parent dropdown on the Post Edit page. + * Filter the arguments for the taxonomy parent dropdown on the Post Edit page. * * @since 4.4.0 * @@ -543,9 +543,9 @@ function post_categories_meta_box( $post, $box ) { * where `$parent` is 'parent_item' * taxonomy label. * } - * */ $parent_dropdown_args = apply_filters( 'post_edit_category_parent_dropdown_args', $parent_dropdown_args ); + wp_dropdown_categories( $parent_dropdown_args ); ?>