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



is_favicon › WordPress Function

Seit5.4.0
Veraltetn/v
is_favicon ( Keine Parameter )
Gibt zurück:
  • (bool) Whether the query is for the favicon.ico file.
Definiert in:
Codex:

Is the query for the favicon.ico file?



Ähnliche Funktionen: do_favicon, is_admin, did_action, has_action, is_info

Quellcode

function is_favicon() {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1.0' );
		return false;
	}

	return $wp_query->is_favicon();
}