SVG Favicon

描述

NOW WITH DARK MODE! Safely add an SVG favicon to your site! Don’t limit your site favicon to the .ico/png/jpg formats! Upload cool vector art from your favorite vector app in seconds! Support is common for SVG favicons in modern browsers. Favicon meta generated by the customizer will not be over-written, giving older browsers a fallback in the event they lack support SVG favicons.

Usage

Before uploading your SVG favicon, make sure the aspect ratio is 1:1. For Safari, create a copy of your SVG and do the following:

  • Drop it to a single color (preferably black)
  • Merge art onto a single layer
  • Place it on a transparent background
  • viewBox attribute must be set to “0 0 16 16”

Uploading: Under the SVG Favicon tab, click the “Upload SVG Favicon” field and upload your SVG favicon

Manifest: After uploading your SVG favicon, you can fill out the corresponding manifest. This step is optional. If you already have your site manifest, leave “Use this site manifest” unchecked.

Safari: The upload process for a pinned tab icon is the same as above. Please note that pinned tab icons should be 100% black with a transparent background. The mask icon color will determine the color of the pinned tab icon.

Dark Mode (NEW): Here is an example of how to enable dark mode in your svg favicon using the prefers-color-scheme media query:

<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
    <style>
        path.class-of-path {
            fill: #000;
        }
        @media (prefers-color-scheme: dark) {
            path.class-of-path {
                fill: #fff;
            }
        }
    </style>
    <path class="class-of-path" fill-rule="evenodd" d="M0 0h16v16H0z"/>
</svg>

Credits

屏幕截图

  • Upload SVG Favicon
  • Upload Pinned Tab Icon for Safari

安装

  1. Install SVG Favicon either via the WordPress.org plugin directory or by uploading the files to your server.
  2. Activate the plugin through the Plugins menu in WordPress.
  3. Go to the Appearance > SVG Favicon to upload your SVG favicon.

常见问题

Can I use svg favicons?

Check SVG favicon browser Compatibility

Can I use dark mode in my svg favicon?

YES! Here is an example of how to enable dark mode in your svg favicon using the prefers-color-scheme media query:

<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
    <style>
        path.class-of-path {
            fill: #000;
        }
        @media (prefers-color-scheme: dark) {
            path.class-of-path {
                fill: #fff;
            }
        }
    </style>
    <path class="class-of-path" fill-rule="evenodd" d="M0 0h16v16H0z"/>
</svg>

Why can’t I see my svg favicon after updating?

If you are running a caching plugin for your WordPress installation, trying emptying the caches. If that doesn’t work, try emptying your browser cache and restarting.

Safari’s pinned icon cache stubborn, what can I do?

Try the following:
1. Unpin the tab for your site
2. Quit Safari
3. Remove the Template Icons folder in your Home > Library > Safari folder
4. Restart Safari
5. Refresh the page your testing (page with your mask-icon)
6. Re-pin the tab

评价

2023 年 11 月 4 日
Unfortunately the plugin is not compatible with PHP 8.X I started a support request but I didn't get any reply. I'm forced to switch to another plugin until is resolved
2021 年 4 月 2 日
This plugin actually works. Reading the docs and posts also helped. Excellent work.
2021 年 3 月 1 日 1 回复
So, don't know what the issue is. But it didn't work out for me. I'll have to go give a try to some other options. I'm giving 3 starts because 1 star is too cruel for a plugin with 1 other review.
2021 年 2 月 10 日
After trying to optimize my png favicons with multiple sized and multiple exports, I found the SVG Favicon plugin. After installing, painlessly and within 5 minutes, I was able to include an SVG file for my favicon that scales cleanly to all sizes. Highly recommended.
阅读所有5条评价

贡献者及开发者

“SVG Favicon” 是开源软件。 以下人员对此插件做出了贡献。

贡献者

「SVG Favicon」插件已被翻译至 1 种本地化语言。 感谢所有译者为本插件所做的贡献。

将“SVG Favicon”翻译成您的语言。

对开发感兴趣吗?

您可以浏览代码,查看SVN仓库,或通过RSS订阅开发日志

更新日志

1.2.6

• Updated for WP 6.2

1.2.3

• Updated for WP 6.0

1.2.2

• Fixed typos and updated language file

1.2

• Now with dark mode support

1.0

• Initial Release.