has_site_icon()
Determines whether the site has a Site Icon.
Хуков нет.
Возвращает
true|false
. Whether the site has a site icon or not.
Использование
has_site_icon( $blog_id );
- $blog_id(int)
- ID of the blog in question.
По умолчанию: current blog
Список изменений
С версии 4.3.0 | Введена. |
Код has_site_icon() has site icon WP 6.6.2
function has_site_icon( $blog_id = 0 ) { return (bool) get_site_icon_url( 512, '', $blog_id ); }