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
// Custom Logo Link | |
function wpc_url_login() { | |
return "http://twentycms.com/"; | |
} | |
add_filter('login_headerurl', 'wpc_url_login'); | |
// Custom Login Styles (including logo) | |
function login_css() { | |
wp_enqueue_style( 'login_css', get_template_directory_uri() . '/css/login.css' ); | |
} |