ControlledChaos
8/8/2016 - 2:44 PM

Replace the WordPress logo on the login page with your own.

Replace the WordPress logo on the login page with your own.

<?php

function ccd_custom_login_logo() {
    echo '
      <style>
      .login h1 a {
        background-image: url( '$image_url' ) !important;
      }
      </style>
      ';
}
add_action( 'login_head', 'ccd_custom_login_logo' );

?>

Custom Login Logo

WordPress Snippet