Created
October 8, 2012 22:06
-
-
Save zackn9ne/3855296 to your computer and use it in GitHub Desktop.
Change WordPress Login URL and IMG
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
| // 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