the_custom_logo() – Displays a custom logo, linked to home.
You appear to be a bot. Output may be restricted
Description
Displays a custom logo, linked to home unless the theme supports removing the link on the home page.
Usage
the_custom_logo( $blog_id );
Parameters
- $blog_id
- ( int ) optional – Optional. ID of the blog in question. Default is the ID of the current blog.
Returns
void
Source
File name: wordpress/wp-includes/general-template.php
Lines:
1 to 3 of 3
function the_custom_logo( $blog_id = 0 ) { echo get_custom_logo( $blog_id ); }