WordPress- How to Change the Login page Logo in WordPress

Topic:

How can we change the Login page Logo in WordPress?

Solution:

Using below action we change the Login page Logo.

function custom_loginlogo() {
echo '';
}
add_action('login_head', 'custom_loginlogo');

No comments:

Post a Comment