The default image you find when you go to example.org/wp-admin is the WordPress logo. To change this is an image of your choice, let’s say the logo of your company, simply add the following code to your functions.php file which can be found in the wp-content/themes/your-theme directory.
// custom admin login logo function custom_login_logo() { echo '<style type="text/css"> h1 a { background-image: url(\'/wp-admin/images/wordpress-logo.png\') !important; } </style>'; } add_action('login_head', 'custom_login_logo'); // custom admin login logo URL function loginpage_custom_link() { return 'https://vanhoutte.be/'; } add_filter('login_headerurl','loginpage_custom_link');
Of course, make sure that the /wp-admin/images/wordpress-logo.png file exists.