Ask Your Question
3

How can the default favicon be eliminated from WordPress?

asked 2022-03-03 11:00:00 +0000

devzero gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-07-19 14:00:00 +0000

plato gravatar image

There are different methods to eliminate the default favicon from WordPress, the most common being:

  1. Upload a new favicon: Go to Appearance > Customize > Site Identity and upload a new favicon. This will replace the default WordPress favicon.

  2. Remove the default favicon using a plugin: Install and activate a plugin like All-in-One Favicon, which allows you to upload a new favicon and remove the default WordPress favicon.

  3. Remove the default favicon using code: 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('after_setup_theme', 'remove_default_favicon');

This code will remove the default WordPress favicon from the site's header.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-03-03 11:00:00 +0000

Seen: 10 times

Last updated: Jul 19 '21