From 93009543bc4d88ab56e7ce912b1240672a044c7a Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 21 Aug 2015 04:54:26 +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. Built from https://develop.svn.wordpress.org/trunk@33686 git-svn-id: http://core.svn.wordpress.org/trunk@33653 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/meta-boxes.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php index 5efa971aff..e0ac4041d1 100644 --- a/wp-admin/includes/meta-boxes.php +++ b/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 ); ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index 89d9e1cac2..e6b229c7a1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33685'; +$wp_version = '4.4-alpha-33686'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.