diff --git a/wp-includes/embed-template.php b/wp-includes/embed-template.php index 7a70b1ddd7..f9cc3a2e13 100644 --- a/wp-includes/embed-template.php +++ b/wp-includes/embed-template.php @@ -65,6 +65,8 @@ if ( have_posts() ) : /** * Filter the thumbnail image size for use in the embed template. * + * @since 4.4.0 + * * @param string $image_size Thumbnail image size. */ $image_size = apply_filters( 'oembed_thumbnail_image_size', $image_size ); @@ -130,6 +132,8 @@ if ( have_posts() ) : /** * Filters the site icon URL for use in the embed template. * + * @since 4.4.0 + * * @param string $site_icon_url The site icon URL. */ $site_icon_url = apply_filters( 'oembed_site_icon_url', $site_icon_url ); @@ -233,6 +237,8 @@ else : /** * Filters the site icon URL for use in the embed template. * + * @since 4.4.0 + * * @param string $site_icon_url The site icon URL. */ $site_icon_url = apply_filters( 'oembed_site_icon_url', $site_icon_url ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 9f655c7996..2f396aa707 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35084'; +$wp_version = '4.4-alpha-35085'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.