在管理員登入頁面上新增自定義徽標和自定義連結

你可以新增以下掛鉤新增自己的徽標和連結以替換預設的 wordpress 徽標。

新增自定義徽標

function custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image: url('.get_bloginfo('template_directory').'/images/custom-logo.png) !important; background-size : 100% !important; width: 300px !important; height : 100px !important;}
</style>';
}
add_action('login_head', 'custom_login_logo');

新增自定義徽標連結

add_filter( 'login_headerurl', 'custom_loginlogo_url' );
function custom_loginlogo_url($url) {
    return home_url();
}