diff --git a/wp-includes/post-thumbnail-template.php b/wp-includes/post-thumbnail-template.php index 98cf3b6849..2862bdc93c 100644 --- a/wp-includes/post-thumbnail-template.php +++ b/wp-includes/post-thumbnail-template.php @@ -200,8 +200,9 @@ function get_the_post_thumbnail_url( $post = null, $size = 'post-thumbnail' ) { * * @since 4.4.0 * - * @param string|array $size Optional. Registered image size to retrieve the source for or a flat - * array of height and width dimensions. Default 'post-thumbnail'. + * @param string|array $size Optional. Image size to use. Accepts any valid image size, + * or an array of width and height values in pixels (in that order). + * Default 'post-thumbnail'. */ function the_post_thumbnail_url( $size = 'post-thumbnail' ) { $url = get_the_post_thumbnail_url( null, $size ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 75dcc85988..ed228cb20d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35075'; +$wp_version = '4.4-alpha-35076'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.