diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index efb682ad12..378e37fe3d 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -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 * diff --git a/wp-includes/version.php b/wp-includes/version.php index 4ef0282f56..075380a698 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5.1-alpha-48828'; +$wp_version = '5.5.1-alpha-48833'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.