Change the title of the login page.
add_filter('login_title', 'codebykp_custom_login_title');
function codebykp_custom_login_title($title) {
return 'Welcome to My Site';
}
Change the title of the login page.
add_filter('login_title', 'codebykp_custom_login_title');
function codebykp_custom_login_title($title) {
return 'Welcome to My Site';
}