From efeff26a67f34d8609ede010da89c4df050fe1f7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 13 Mar 2016 09:13:50 +0000 Subject: [PATCH] Docs: Update default `$size` value for `get_custom_logo` filter after [36950]. Props wido. See #33755. git-svn-id: https://develop.svn.wordpress.org/trunk@36975 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/general-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index 8a3a71cd6c..d3cf27a445 100644 --- a/src/wp-includes/general-template.php +++ b/src/wp-includes/general-template.php @@ -912,7 +912,7 @@ function get_custom_logo( $blog_id = 0 ) { * @since 4.5.0 * * @param string $html Custom logo HTML output. - * @param string $size Size specified in add_theme_support declaration, or 'thumbnail' default. + * @param string $size Size specified in add_theme_support declaration, or 'full' default. */ return apply_filters( 'get_custom_logo', $html, $size ); }