do_favicon() – Display the favicon.ico file content.
You appear to be a bot. Output may be restricted
Description
Displays the favicon.ico file content.
Usage
do_favicon();
Parameters
Returns
void
Source
File name: wordpress/wp-includes/functions.php
Lines:
1 to 11 of 11
function do_favicon() { /** * Fires when serving the favicon.ico file. * * @since 5.4.0 */ do_action( 'do_faviconico' ); wp_redirect( get_site_icon_url( 32, includes_url( 'images/w-logo-blue-white-bg.png' ) ) ); exit; }