Skip to content

Instantly share code, notes, and snippets.

@webdados
Last active December 29, 2021 20:42
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save webdados/a7702e588070f9a1cfa12dff89b3573c to your computer and use it in GitHub Desktop.
Save webdados/a7702e588070f9a1cfa12dff89b3573c to your computer and use it in GitHub Desktop.
Do not show WordPress 5.4 default WP blue favicon
<?php
//Inspiration: https://gist.github.com/florianbrinkmann/a879099f3d28c5e1d64f2aeea042becf
add_action( 'do_faviconico', function() {
//Check for icon with no default value
if ( $icon = get_site_icon_url( 32 ) ) {
//Show the icon
wp_redirect( $icon );
} else {
//Show nothing
header( 'Content-Type: image/vnd.microsoft.icon' );
}
exit;
} );
@Zodiac1978
Copy link

Looks like this is not recommended anymore after rfc2616 is followed by rfc7230
https://datatracker.ietf.org/doc/html/rfc7230#section-3.3.2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment