mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
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:
parent
e453dc610a
commit
00056f8d71
@ -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 );
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user