wp_editor not adding paragraphs despite wpautop being set to true

Use the_content() not echo get_the_content();.

As you can see in wp-includes/default-filters.php wpautop is added for the filter 'the_content' which is called in the_content().

Leave a Comment