Why does WP re-format select statement and how do I stop it
-
When I use code from paypal like this;
<table> <tr><td><input type="hidden" name="on0" value="Payment Options:">Payment Options:</td></tr><tr><td><select name="os0"> <option value="16-week erials]">16-week] $196.00 USD</option> <option value="Winter os]">Winter only USD</option> <option value="Spring os]">Spring only USD</option> </select> </td></tr>
WordPress turns it into this;
<table> <tbody> <tr> <td><input type="hidden" name="on0" value="Payment Options:" />Payment Options:</td> </tr> <tr> <td> <select name="os0"> <option value="16-week erials]">16-week] $196.00 USD</option> </select> <select name="os0"> <option value="Winter os]">Winter only USD</option> </select> <select name="os0"> <option value="Spring os]">Spring only USD</option> </select> </td> </tr>
Making the select statement three lines!
How do I stop this…….
- The topic ‘Why does WP re-format select statement and how do I stop it’ is closed to new replies.