Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jqueryalmeida/5686aa8310f86b0a8d8cb87df9c53f0b to your computer and use it in GitHub Desktop.

Select an option

Save jqueryalmeida/5686aa8310f86b0a8d8cb87df9c53f0b 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;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment