wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



has_site_icon › WordPress Function

Seit4.3.0
Veraltetn/v
has_site_icon ( $blog_id = 0 )
Parameter:
  • (int) $blog_id Optional. ID of the blog in question. Default current blog.
    Erforderlich: Nein
    Standard:
Gibt zurück:
  • (bool) Whether the site has a site icon or not.
Definiert in:
Codex:

Determines whether the site has a Site Icon.



Quellcode

function has_site_icon( $blog_id = 0 ) {
	return (bool) get_site_icon_url( 512, '', $blog_id );
}