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
This commit is contained in:
John Blackbourn 2015-10-12 22:51:24 +00:00
parent 2dd5ad6327
commit 7cb0dcc9a6
2 changed files with 7 additions and 1 deletions

View File

@ -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 );

View File

@ -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.