WordPress is deleting input tags
-
WordPress is deleting input tags from my html code. It seems to only happen on some of my wordpress sites. I have created a form, insert the html code on a page, I can view the page only once, then once the page refreshes, all of the input tags have been removed from my code … which results in a pretty messy page.
I edit the page using an admin role, thus it should have the ability to use input tags in the html … correct?
<div class=’form’>
<div class=’form_label’><label>Your First Name <span class=’required’>*</span></label></div>
<div class=’form_input’><input type=’text’ id=’form_1_0′ name=’form[1_0]’ required=’required’ ></div>
</div>I save the page, view the page once, on the second viewing the input tags are removed and I get this:
<div class=’form’>
<div class=’form_label’><label>Your First Name <span class=’required’>*</span></label></div>
</div>The actual form is more elaborate than shown above … the code is for example.
Any help would be appreciated.
- The topic ‘WordPress is deleting input tags’ is closed to new replies.