gpt4 book ai didi

php - 您可以在 Wordpress 上添加自定义仪表板 Logo 吗?

转载 作者:行者123 更新时间:2023-11-28 17:22:40 25 4
gpt4 key购买 nike

我想替换左上角仪表板中的 Wordpress Logo ?哪里有'W'

这可能吗?

最佳答案

是的,你可以,有两种方式:

  1. 插件:White Label CMS wordpress plugin
  2. 通过代码:

First you need to save your custom logo as custom-logo.png file on your computer. It needs to be exactly 16 x 16px in dimensions.

Once you have your custom logo ready, you need to upload it to /wp-content/themes/your-theme/images folder using FTP. If your theme does not have an images folder, then you need to create it.

After uploading you custom logo image, simply add this code to your theme’s functions.php file or a site-specific plugin.

function wpb_custom_logo() {
echo '<style type="text/css">
#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
background-image: url(' . get_bloginfo('stylesheet_directory') . '/images/custom-logo.png) !important;
background-position: 0 0;
color:rgba(0, 0, 0, 0);
}
#wpadminbar #wp-admin-bar-wp-logo.hover > .ab-item .ab-icon {
background-position: 0 0;
}
</style>
';
}

//hook into the administrative header output
add_action('wp_before_admin_bar_render', 'wpb_custom_logo');

您可以在此处找到更多信息:http://www.wpbeginner.com/wp-themes/adding-a-custom-dashboard-logo-in-wordpress-for-branding/

关于php - 您可以在 Wordpress 上添加自定义仪表板 Logo 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41615499/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com