How does wp-login.php pick up theme in version 3.3 ????
-
Hi there – I’ve just upgraded to 3.3 and the login page appears to be using the wp-admin.css – I’m sure this used to be login.css and colors-fresh.css. DOES ANYONE KNOW IF WHERE THE WP-LOGIN.PHP FILE HAS NOW CHANGED.
I have a local copy running with the theme displayed okay (previous version 3.2.1)
When you look at the source files the system is picking up different css files – I have copied the wp-login files from my test site with corresponding login-css & colors-fresh.css although it reverts to wp-admin.css. I have also added the link rel directly and commented out the css files (all that happens is only the colors-fresh seems to be picked up not my login).
I can play around to add all the theme into my colors-fresh although am studying for an exam and time is very very precious. If I can revert back to how it was that would be lovely. (or find out if there have been any changes that would be cool.
SOURCE FOR 3.3
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” dir=”ltr” lang=”en-US”>
<head>
<title> › Log In</title>
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ />
<link rel=’stylesheet’ href=’https://www.chingfordelectrical.co.uk/wp-admin/login.css?version=3.3′ type=’text/css’ />
<link rel=’stylesheet’ id=’wp-admin-css’ *// WP-ADMIN-CSS HERE !!!!! href=’https://www.chingfordelectrical.co.uk/wp-admin/css/wp-admin.css?ver=20111208′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’colors-fresh-css’ *// COLORS-FRESH.CSS HERE !!!!!! href=’https://www.chingfordelectrical.co.uk/wp-admin/css/colors-fresh.css?ver=20111206′ type=’text/css’ media=’all’ />
<meta name=’robots’ content=’noindex,nofollow’ />
</head>SOURCE FOR 3.2.1
<html xmlns=”https://www.w3.org/1999/xhtml” dir=”ltr” lang=”en-US”>
<head>
<title>Chingford Electrical › Log In</title>
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ />
<link rel=’stylesheet’ id=’login-css’ *// lOGIN.CSS here !!! href=’https://localhost/chingfordelectrical/wp-admin/css/login.css?ver=20110610′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’colors-fresh-css’ *// COLORS-FRESH.CSS HERE !!! href=’https://localhost/chingfordelectrical/wp-admin/css/colors-fresh.css?ver=20110703′ type=’text/css’ media=’all’ />
<meta name=’robots’ content=’noindex,nofollow’ />
</head>
- The topic ‘How does wp-login.php pick up theme in version 3.3 ????’ is closed to new replies.