在我的 WordPress 博客中,我在添加新帖子表单的“描述”字段中插入了以下内容。
sss'ss''ss'''ss"ss""sss"""
我正在应用过滤器钩子(add_filter) the_content()函数,如下所示。基本上,如果存在超过 50 个字符的意思,我想显示非空格单词,我想在 50 个字符后留出空格。所以我使用了自动换行功能来做到这一点。但是,在内容中使用特殊字符时,我得到了如下所述的有线输出。
函数.php
function filter_content($content) {
global $post;
$original = wordwrap($content,50,' ',' ' );
return $original;
}
add_filter( 'the_content', 'filter_content' );
输出 :
sss’ss”ss”’ss”ss& #8221;"sss”"”