Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I'm trying to include a ticket order form on a WordPress page. It includes two select lists. I had it all looking and working fine, but at some point WordPress started adding opening and closing tags to the option tags, so

<select name="os0">
<option value="Will call">Will call</option>
<option value="Mail tickets">Mail tickets</option>
</select>

becomes

<select name="os0">
<option value="Will call">Will call</option></select>
<select name="os0"><option value="Mail tickets">Mail tickets</option></select>
</select>

This seemed to happen when I made changes to the CSS file in the child theme. I'm quite new to WordPress but not to html, php, mysql, etc... What in the world am I missing here? I'm adding all the code to the page using the HTML tab, then clicking Update and everything looks good. Until it changes! This has happened three times in the last hour and it's got me confused. Any assistance would be greatly appreciated!

Mark

share|improve this question
1  
please put the code that is generating the select tags. – HungryCoder Jun 22 '12 at 2:53
disable all plugins then try again? – Zach L Jun 22 '12 at 4:40

closed as not a real question by toscho Jul 21 '12 at 21:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.