Skip to content

Instantly share code, notes, and snippets.

@zackn9ne
Created October 8, 2012 22:06
Show Gist options
  • Select an option

  • Save zackn9ne/3855296 to your computer and use it in GitHub Desktop.

Select an option

Save zackn9ne/3855296 to your computer and use it in GitHub Desktop.
Change WordPress Login URL and IMG
// verander WP-Logo login.php
function my_custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url('.get_bloginfo('template_directory').'/images/pad-naar-logo.png) !important; }
</style>';
}
add_action('login_head', 'my_custom_login_logo');
// verander de url op de login pagina
function put_my_url(){
return ('http://www.yourdomain.nl/'); // verander in de url van je website
}
add_filter('login_headerurl', 'put_my_url');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment