From 7cb0dcc9a6c7084886ee8b92e43c63ee3db7992c Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 12 Oct 2015 22:51:24 +0000 Subject: [PATCH] Add missing `@since` docs for the filters in `wp-includes/embed-template.php` See #32522, #32246 Built from https://develop.svn.wordpress.org/trunk@35085 git-svn-id: http://core.svn.wordpress.org/trunk@35050 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/embed-template.php | 6 ++++++ wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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.