WP_Query::is_favicon() – Is the query for the favicon.ico file?

You appear to be a bot. Output may be restricted

Description

Is the query for the favicon.ico file?

Usage

$bool = WP_Query::is_favicon();

Parameters

Returns

bool Whether the query is for the favicon.ico file.

Source

File name: wordpress/wp-includes/class-wp-query.php
Lines:

1 to 3 of 3
  public function is_favicon() {
    return (bool) $this->is_favicon;
  }
 

 View on GitHub View on Trac