diff --git a/wp-admin/includes/media.php b/wp-admin/includes/media.php index 904cbb0ebb..e259766d8b 100644 --- a/wp-admin/includes/media.php +++ b/wp-admin/includes/media.php @@ -112,7 +112,8 @@ function the_media_upload_tabs() { * @param string $align image css alignment property * @param string $url image src url * @param string $rel image rel attribute - * @param string $size image size (thumbnail, medium, large, full or added with add_image_size() ) + * @param string|array $size Optional. Image size. Accepts any valid image size, or an array of width + * and height values in pixels (in that order). * @return string the html to insert into editor */ function get_image_send_to_editor( $id, $caption, $title, $align, $url='', $rel = '', $size='medium', $alt = '' ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 56f244b01f..dddc152fa3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35054'; +$wp_version = '4.4-alpha-35055'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.