Skip to content

Instantly share code, notes, and snippets.

@akinayturan
Created February 10, 2015 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akinayturan/2c2cbdd2dbf70eac0675 to your computer and use it in GitHub Desktop.
Save akinayturan/2c2cbdd2dbf70eac0675 to your computer and use it in GitHub Desktop.
WP ~ Giriş ve Kayıt Ekranı Logosunu Değiştirme
<?php
function custom_loginlogo() {
echo '<style type="text/css">
h1 a {background-image: url(resim_adresi) !important; }
</style>';
}
add_action('login_head', 'custom_loginlogo');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment