Berikut Tahapan cara untuk mengganti logo pada halaman login wordpress

1.Login ke cpanel anda

2.Masuk ke wp-content selanjutnya pilih theme

3.buka folder theme sobat, selanjutnya cari file function.php

4.Tambahkan script berikut pada file function.php

function my_login_logo() { ?>
<style type=”text/css”>
body.login div#login h1 a {
background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/logo1.png );
padding-bottom: 60px;
background-size: 204px;
background-position: center top;
background-repeat: no-repeat;
color: #444;
height: 204px;
font-size: 20px;
line-height: 1.3em;
margin: 0 auto 25px;
padding: 0;
width: 204px;
text-indent: -9999px;
outline: 0;
display: block;
}
</style>

Sesuaikan logo anda, ganti /images/logo1.png..dengan nama logo sobat buat..

Jadinya :

function my_login_logo() { ?>
<style type=”text/css”>
body.login div#login h1 a {
background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/logo1.png );
padding-bottom: 60px;
background-size: 204px;
background-position: center top;
background-repeat: no-repeat;
color: #444;
height: 204px;
font-size: 20px;
line-height: 1.3em;
margin: 0 auto 25px;
padding: 0;
width: 204px;
text-indent: -9999px;
outline: 0;
display: block;
}
</style>

<?php }
add_action( ‘login_enqueue_scripts’, ‘my_login_logo’ );

!jangan lupa upload file logo sobat ke folder images theme yg sobat gunakan…letaknya di wp-content, pilih theme selanjunya pilih theme yg sobat gunakan..misalnya nama themenya bahri, buka folder bahri, lalu cari folder image..upload logo ke dalam folder image..semoga sukses