has_site_icon()
Determines whether the site has a Site Icon.
No Hooks.
Returns
true|false. Whether the site has a site icon or not.
Usage
has_site_icon( $blog_id );
- $blog_id(int)
- ID of the blog in question.
Default:current blog
Changelog
| Since 4.3.0 | Introduced. |
has_site_icon() has site icon code WP 7.0
function has_site_icon( $blog_id = 0 ) {
return (bool) get_site_icon_url( 512, '', $blog_id );
}