/ Published in: PHP
URL: http://digwp.com/2010/03/wordpress-functions-php-template-custom-functions/
Expand |
Embed | Plain Text
/** * Customize Admin Login Logo * http://digwp.com/2010/03/wordpress-functions-php-template-custom-functions/ * **/ function myfunction_custom_login_logo() { echo '<style type="text/css"> h1 a { background-image: url('.get_bloginfo('template_directory').'/images/custom-login-logo.png) !important; } </style>'; } add_action('login_head', 'myfunction_custom_login_logo');
You need to login to post a comment.
