将您自己的徽标添加到Wordpress仪表板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将您自己的徽标添加到Wordpress仪表板相关的知识,希望对你有一定的参考价值。
Add the following lines of code to your theme's function.php file.
add_action('admin_head', 'my_custom_logo'); function my_custom_logo() { echo ' <style type="text/css"> #header-logo { background-image: url('.get_bloginfo('template_directory').'/images/your-logo.jpg) !important; } </style> '; }
以上是关于将您自己的徽标添加到Wordpress仪表板的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress,替换默认的WordPress“W”仪表板中的徽标