WordPress - Customize Login Page

<?php // Change Logo function custom_login_logo() { echo '<style type="text/css">h1 a { background: url('.get_bloginfo('template_directory').'/images/logo-login.gif) 50% 50% no-repeat !important; }</style>'; } add_action('login_head', 'custom_login_logo'); // Login logo must reside in your active theme in /images folder. // Change URL function change_wp_login_url() { return bloginfo('url'); } add_filter('login_headerurl', 'change_wp_login_url'); // Change Title function change_wp_login_title() { return get_option('blogname'); } add_filter('login_headertitle', 'change_wp_login_title');

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.