Created
May 10, 2018 20:26
-
-
Save caralgar/e2023aa34233f1f396df841ff9d03298 to your computer and use it in GitHub Desktop.
Cómo cambiar el logotipo de Login en WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function mi_logo_personalizado() { | |
echo ' | |
<style type="text/css"> | |
.login h1 a { | |
background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/login-logo.png); | |
} | |
</style>'; | |
} | |
add_action( 'login_enqueue_scripts', 'mi_logo_personalizado' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment