Výměna loga WordPressu za vlastní logo s odkazem na aktuální home URL.
add_action( 'login_enqueue_scripts', function() {
?>
<style type="text/css">
#login h1 a, .login h1 a {
background-image: url('https://example.com/wp-content/uploads/custom-logo.png');
background-size: contain;
background-repeat: no-repeat;
width: 250px;
height: 250px;
}
</style>
<?php
});
add_filter( 'login_headerurl', function() {
return home_url();
});
add_filter( 'login_headertext', function() {
return 'Zpět na ' . get_bloginfo( 'name' );
});