From d2a3bea2f7b80622bbf34b7593e479023f4dede8 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 10 Mar 2016 17:45:20 +0000 Subject: [PATCH] Docs: Improve the `$blog_id` parameter description in the DocBlock for `the_custom_logo()`, introduced in [36698]. See #33755. See #35986. git-svn-id: https://develop.svn.wordpress.org/trunk@36938 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 986d91dec1..d9dad1c0ad 100644 --- a/src/wp-includes/general-template.php +++ b/src/wp-includes/general-template.php @@ -918,7 +918,7 @@ function get_custom_logo( $blog_id = 0 ) { * * @since 4.5.0 * - * @param int $blog_id Optional. ID of the blog in question. Default current blog. + * @param int $blog_id Optional. ID of the blog in question. Default is the ID of the current blog. */ function the_custom_logo( $blog_id = 0 ) { echo get_custom_logo( $blog_id );