From 692452336634cf29d06f2414b1187a58159430ae Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 1 Nov 2015 15:42:25 +0000 Subject: [PATCH] Docs: Correctly notate that the default `$width` and `$height` embed dimensions are passed to the `embed_defaults` filter as a compacted array, and not two distinct parameters. Props swissspidy. Fixes #34522. Built from https://develop.svn.wordpress.org/trunk@35485 git-svn-id: http://core.svn.wordpress.org/trunk@35449 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/embed-functions.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/embed-functions.php b/wp-includes/embed-functions.php index 8a8d7e2694..eccec922a8 100644 --- a/wp-includes/embed-functions.php +++ b/wp-includes/embed-functions.php @@ -43,7 +43,7 @@ function wp_embed_unregister_handler( $id, $priority = 10 ) { } /** - * Create default array of embed parameters. + * Creates default array of embed parameters. * * The width defaults to the content width as specified by the theme. If the * theme does not specify a content width, then 500px is used. @@ -74,9 +74,9 @@ function wp_embed_defaults( $url = '' ) { * * @since 2.9.0 * - * @param int $width Width of the embed in pixels. - * @param int $height Height of the embed in pixels. - * @param string $url The URL that should be embedded. + * @param array $size An array of embed width and height values + * in pixels (in that order). + * @param string $url The URL that should be embedded. */ return apply_filters( 'embed_defaults', compact( 'width', 'height' ), $url ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 717c2bd446..b9f83b551c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta2-35484'; +$wp_version = '4.4-beta2-35485'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.