仪表板菜单中的 WordPress 自定义主题 Favicon

发布于 2024-08-25 15:03:09 字数 161 浏览 7 评论 0原文

当您在 WordPress 中创建自定义主题时,您可以在 WP 仪表板左侧菜单上添加指向主题选项的链接。菜单标签旁边使用的默认图标称为 generic.png,位于 wp-admin/images 目录中。

有人知道如何告诉 WP 使用我主题的自定义 favicon.png 而不是默认的吗?

When you create a custom theme in WordPress, you can add a link to your theme options on the left menu in the WP dashboard. The default icon that's used next to your menu label is called generic.png and resides in the wp-admin/images directory.

Anyone know how to tell WP to use my theme's custom favicon.png instead of the default?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉生梦死 2024-09-01 15:03:09

我想出了这个。希望它可以帮助其他人:

add_menu_page('Page title', 'Top-level menu title', 
'administrator', 'my-top-level-handle',
'my_magic_function','../wp-content/themes/yourTheme/img/favicon.png');

您还可以在主题的主菜单项下添加一个子菜单,如下所示......

add_submenu_page( 'my-top-level-handle', 'Page title',
'Sub-menu title', 'administrator', 'my-submenu-handle', 'my_magic_function')

I figured this one out. Hopefully it can help others:

add_menu_page('Page title', 'Top-level menu title', 
'administrator', 'my-top-level-handle',
'my_magic_function','../wp-content/themes/yourTheme/img/favicon.png');

You can also add a submenu under your theme's main menu item like so...

add_submenu_page( 'my-top-level-handle', 'Page title',
'Sub-menu title', 'administrator', 'my-submenu-handle', 'my_magic_function')
月亮是我掰弯的 2024-09-01 15:03:09

最简单的方法是为您的 Favicon 使用 ICO 格式。

如果您有其他图像并希望将其转换为 ICO 格式,您可以使用 ICO Converter 来这样做!

Easiest way is to use ICO format for your Favicon.

If you have other image for and want it to convert in ICO format, you can use ICO Converter to do that!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文