Select Page

How to Fix WordPress Export New Line

Add this to your functions.php before exporting posts. It will run the content through the same wpautop() function that’s used to display posts. function codelight_content_export($content) { return wpautop($content); }...