Template: Pass $blog_id to the get_custom_logo filter.

Props achbed, juanfra.
Fixes #36639.
Built from https://develop.svn.wordpress.org/trunk@37645


git-svn-id: http://core.svn.wordpress.org/trunk@37611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2016-06-06 21:24:27 +00:00
parent e453dc610a
commit 00056f8d71
2 changed files with 5 additions and 3 deletions

View File

@ -903,10 +903,12 @@ function get_custom_logo( $blog_id = 0 ) {
* Filters the custom logo output.
*
* @since 4.5.0
* @since 4.6.0 Added the `$blog_id` parameter.
*
* @param string $html Custom logo HTML output.
* @param string $html Custom logo HTML output.
* @param int $blog_id ID of the blog to get the custom logo for.
*/
return apply_filters( 'get_custom_logo', $html );
return apply_filters( 'get_custom_logo', $html, $blog_id );
}
/**

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.6-alpha-37644';
$wp_version = '4.6-alpha-37645';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.