Wordpress自定义管理徽标
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress自定义管理徽标相关的知识,希望对你有一定的参考价值。
Add custom logo to the login and dashboard of wordpress.More customization functions at:
http://sixrevisions.com/wordpress/how-to-customize-the-wordpress-admin-area/
// 32px square function custom_logo() { echo '<style type="text/css"> #header-logo { background-image: url('.get_bloginfo('template_directory').'/images/admin_logo.png) !important; } </style>'; } add_action('admin_head', 'custom_logo'); // 325px by 70px should be about right function custom_login_logo() { echo '<style type="text/css"> h1 a { background-image:url('.get_bloginfo('template_directory').'/images/login_logo.png) !important; } </style>'; } add_action('login_head', 'custom_login_logo');
以上是关于Wordpress自定义管理徽标的主要内容,如果未能解决你的问题,请参考以下文章
PHP 替换默认的WordPress“W”带有自定义替代方案的管理标题中的徽标