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
No related posts.
