Skip to content

How to remove the WordPress icon from the browser tab?

The icon that appears in the browser tab when visiting a website is the so-called favicon. For WordPress sites, the default favicon is the WordPress icon. However, if you would like to give your site a more personalized touch, you may want to change or remove this icon altogether. Here are some methods to help you do this.

Method 1: Changing the favicon using the WordPress personalizer

This is the simplest method that does not require any technical knowledge or changes to the website code. Just log in to the WordPress administration panel, go to the “Personalize” section (“Appearance” > “Customize”) and select “Site Identity”. In this section there is the “Site Icon” option, which allows you to change the default WordPress icon to any other one. Just click on "Select Image", select a new icon from the media library or upload it from disk, and then confirm the changes by clicking "Publish". If you want to remove an icon, just click “Remove” on the current icon.

Method 2: Adding code to functions.php

If you are familiar with the code and feel comfortable modifying page files, you can add the following code to your theme's functions.php file:

function remove_default_favicon() { remove_action('wp_head', 'wp_site_icon', 99); } add_action('init', 'remove_default_favicon');

This code will remove the default WordPress favicon from the page header.

Method 3: Using a plugin

There are also plugins that can help you manage your website's favicon. One example is “Favicon by RealFaviconGenerator”. This plugin not only allows you to add your own favicon, but also provides tools to create and optimize icons for various platforms and devices.

To install the plugin, log in to your WordPress admin panel, go to “Plugins” > “Add New”, search for “Favicon by RealFaviconGenerator”, then install and activate the plugin. After activating the plugin, you can go to “Appearance” > “Favicon” and add or remove favicon as you wish.

To summarize, there are many ways to change or remove the default WordPress icon from your browser tab. The method you choose depends on your level of comfort with modifying the website code and your individual needs. Remember that the favicon is an important element of the website's brand and identity, so it is worth paying some attention to it.

Check out the offer of 1500+ Premium WordPress plugins and themes!