When I create a new page and put <br class="clear">
into the HTML view it gets rendered as
<p>
<br class="clear">
</p>
This causes problems with the theme http://www.gallyapp.com/tf_themes/?theme=Lotus
where the <br>
is not wrapped.
How can remove the wrapping?
Use shortcode instead of
<br class="clear">
you can strip all the filters by calling
get_the_content()
instead ofthe_content()