PHP 更改WordPress管理员和登录页面徽标

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 更改WordPress管理员和登录页面徽标相关的知识,希望对你有一定的参考价值。

function my_custom_login_logo() {
    echo '<style type="text/css">
        h1 a { background-image:url('.get_bloginfo('template_url').'/images/login_page_logo.png) !important; }
    </style>';
}

add_action('login_head', 'my_custom_login_logo');


To change the WordPress Admin area logo (the one which located in the top left side of your Admin panel) then simply add following code to your theme’s functions.php file. Again, Don’t forget to change the logo location in line 3.

function custom_logo() {
  echo '<style type="text/css">
    #header-logo { background-image: url('.get_bloginfo('template_directory').'/images/admin_page_logo.png) !important; }
    </style>';
}

add_action('admin_head', 'custom_logo');

以上是关于PHP 更改WordPress管理员和登录页面徽标的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress - 自定义WordPress登录页面的徽标

PHP 自定义WordPress登录页面的徽标

PHP 自定义WordPress登录页面的徽标

php 更改Wordpress管理员登录页面

php 登录页面 - 更改徽标

php 自定义徽标WordPress登录