How can I work with paragraphs in Wordpress?
- by Steven
Wordpress has a filter that automatically add paragraphs to posts. I can remove this by adding the followin code:
// Remove the <p> tags which WP automatically inserts in psots.
remove_filter ('the_content', 'wpautop');
The problem is that i removes <br /> tags as well.
So I'm not removing this filter at the moment. My problem is…