문제

I've spent about 3 hours trying out various functions to figure out why the newline characters are being removed every time I save.

How do I figure out why is wordpress suddenly stripping away newline characters? I have not installed any plugins. How can I get newline characters to show up on my site without converting all blocks to HTML and modifying everything in code?

도움이 되었습니까?

해결책

I found the following snippet which we can add to functions.php . I'm adding these via a plugin.

function clear_br($content) { 
return str_replace("<br>","<br clear='none'>", $content);
} 
add_filter('the_content','clear_br');

Note that I've put "<br>" tag which is what wordpress creates when you enter newline characters.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 wordpress.stackexchange
scroll top