Docs: Update documentation for `get_custom_logo()` and `the_custom_logo()` to mention the `unlink-homepage-logo` theme feature.

Follow-up to [48039], [48283], [48749], [48757], [48758].

Props sabernhardt.
Merges [48832] to the 5.5 branch.
Fixes #51075.

git-svn-id: https://develop.svn.wordpress.org/branches/5.5@48833 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-08-20 10:40:40 +00:00
parent acc404eaf8
commit 4e7ac9bb9f
1 changed files with 3 additions and 3 deletions

View File

@ -996,10 +996,10 @@ function has_custom_logo( $blog_id = 0 ) {
}
/**
* Returns a custom logo, linked to home when on another page.
* Returns a custom logo, linked to home unless the theme supports removing the link on the home page.
*
* @since 4.5.0
* @since 5.5.0 Removed the link on the home page.
* @since 5.5.0 Added option to remove the link on the home page with `unlink-homepage-logo` theme support.
*
* @param int $blog_id Optional. ID of the blog in question. Default is the ID of the current blog.
* @return string Custom logo markup.
@ -1098,7 +1098,7 @@ function get_custom_logo( $blog_id = 0 ) {
}
/**
* Displays a custom logo, linked to home when on another page.
* Displays a custom logo, linked to home unless the theme supports removing the link on the home page.
*
* @since 4.5.0
*