gpt4 book ai didi

wordpress - 如何在 WordPress 中正确断行包含 CJK 和英文字符的行?

转载 作者:行者123 更新时间:2023-12-03 22:29:10 33 4
gpt4 key购买 nike

我发现我的 wordpress4.7 中的 CJK 文章无法正确断行,其中包含 CJK 和英文字符。
这是发表前的文章。

enter image description here

在发布之前,所有行都正确断开。

enter image description here

现在发布后显示如下。
所有的行都被弄乱了,以意想不到的方式打破了格式错误。

enter image description here

我曾试图以这种方式修复它。

vim  /var/www/html/wp/wp-content/themes/twentysixteen/style.css 
.site-inner {
margin: 0 auto;
max-width: 1320px;
position: relative;
}

.site-content {
word-wrap: break-word;overflow:hidden;
word-break:break-all;white-space:pre-wrap;
}

重启apache和wordpress,完全没有效果。
我的 wordpress 版本是 4.7,主题是 26。

最佳答案

尝试在您的functions.php主题文件中添加此代码

    function my_tinymce_fix( $init )
{
// html elements being stripped
$init['extended_valid_elements'] = 'div[*], article[*]';

// don't remove line breaks
$init['remove_linebreaks'] = false;

// convert newline characters to BR
$init['convert_newlines_to_brs'] = true;

// don't remove redundant BR
$init['remove_redundant_brs'] = false;

// pass back to wordpress
return $init;
}
add_filter('tiny_mce_before_init', 'my_tiny_mce_fix');

关于wordpress - 如何在 WordPress 中正确断行包含 CJK 和英文字符的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41087556/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com