Skip to content

Instantly share code, notes, and snippets.

@caralgar
Created May 10, 2018 20:26
Show Gist options
  • Save caralgar/e2023aa34233f1f396df841ff9d03298 to your computer and use it in GitHub Desktop.
Save caralgar/e2023aa34233f1f396df841ff9d03298 to your computer and use it in GitHub Desktop.
Cómo cambiar el logotipo de Login en WordPress
<?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