import - After imorting posts from another blog double line breaks have been replaced with single line breaks

admin2025-06-04  3

i wonder if anyone else has had this problem and knows how to fix it.

After importing all posts from my old wordpress installation, using the default xml import tool, all double line breaks have been replaced with single line breaks

this has severely disrupted the formatting of the text in my posts, as normally wordpress interprets a double line break as a paragraph, but after importing, the text looks very squashed together as the single line breaks are interpreted as <br>

does anyone know of a way to fix this issue?

i wonder if anyone else has had this problem and knows how to fix it.

After importing all posts from my old wordpress installation, using the default xml import tool, all double line breaks have been replaced with single line breaks

this has severely disrupted the formatting of the text in my posts, as normally wordpress interprets a double line break as a paragraph, but after importing, the text looks very squashed together as the single line breaks are interpreted as <br>

does anyone know of a way to fix this issue?

Share Improve this question asked Jun 8, 2018 at 1:41 user280109user280109 1012 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

Add this to your functions.php before exporting It will run the content through same wpautop() function that's used to display posts.

function codelight_content_export($content) {
 return wpautop($content);
}
add_filter('the_content_export', 'codelight_content_export', 999);
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749021716a315689.html

最新回复(0)