How to Add Multiple Line Breaks in WordPress
by admin on Feb.02, 2010, under Web Development, Wordpress
WordPress strips / deletes automatically all <p> and <br> tags. If you want to have more than one line break, paragraph or spacing between two lines you’ll get problems. But there are three different methods to bypass this:
- Simply add a non-break space. WordPress then thinks there is content so allows the spacing:
<br />
- Use an empty paragraph tag:
- Install the TinyMCE Advanced plugin for WordPress. This adds a more complex WYSIWYG (“What You See Is What You Get”) editor to your WordPress. After installing and activating, the option to enable line breaks can be found in the Settings->TinyMCE Advanced panel:

or
<p align=”none”> </p>
or
Now you should be able to add extra line breaks
October 10th, 2010 on 12:52 am
I have searched high and low in the forums and could never find an answer to this question! Thank you Thank you Thank you!