$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>import - After imorting posts from another blog double line breaks have been replaced with single line breaks|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

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

matteradmin9PV0评论

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);
Post a comment

comment list (0)

  1. No comments so far