Thread Starter
nanc
(@nanc)
For those interested, the dropdown doesn’t work because of the doctype that’s declared:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
When I change it to this, it works fine (the dropdown, that is):
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”>
<html lang=”en”>
<head>
My new question is – will using this HTML 4.0 transitional doctype render my wordpress blog correctly? I’m creating my own theme and appreciate any feedback I can get before I spend hours changing things … Thanks.
Thread Starter
nanc
(@nanc)
Thanks – that’s what I figured, but it’s good to know for sure. They should put that in the documentation. – Have a great week.