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



do_favicon › WordPress Function

Seit5.4.0
Veraltetn/v
do_favicon ( Keine Parameter )
Definiert in:
Codex:

Displays the favicon.ico file content.



Quellcode

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;
}