From c52dc4287994073dc42a8384f584bd9d79fbba01 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Sun, 30 Nov 2014 09:50:46 +0000 Subject: [PATCH] Add an entry to the changelog for the `wp_editor_expand` hook denoting that the `$post_type` parameter was added in 4.1.0. See #30458. git-svn-id: https://develop.svn.wordpress.org/trunk@30643 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/edit-form-advanced.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/edit-form-advanced.php b/src/wp-admin/edit-form-advanced.php index f01f1f0a90..52edd1e688 100644 --- a/src/wp-admin/edit-form-advanced.php +++ b/src/wp-admin/edit-form-advanced.php @@ -17,8 +17,9 @@ $_wp_editor_expand = $_content_editor_dfw = false; * Filter whether to enable the 'expand' functionality in the post editor. * * @since 4.0.0 + * @since 4.1.0 Added the `$post_type` parameter. * - * @param bool $expand Whether to enable the 'expand' functionality. Default true. + * @param bool $expand Whether to enable the 'expand' functionality. Default true. * @param string $post_type Post type. */ if ( post_type_supports( $post_type, 'editor' ) && ! wp_is_mobile() &&