From da6090d9f7f915b6f90e03a67772978f7c933cd8 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 12 Oct 2015 22:50:34 +0000 Subject: [PATCH] Add missing `@since` docs for the filters in `wp-includes/embed-template.php` See #32522, #32246 git-svn-id: https://develop.svn.wordpress.org/trunk@35085 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/embed-template.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/wp-includes/embed-template.php b/src/wp-includes/embed-template.php index 7a70b1ddd7..f9cc3a2e13 100644 --- a/src/wp-includes/embed-template.php +++ b/src/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 );