WordPress的默认编辑器默认转义所有html实体,如<;,>&;等等。您可以查看法典以了解更多信息。如果希望按原样打印特殊字符,可以使用PHP函数html_entity_decode()
要解码编码实体,请执行以下操作:
function wpse_56268_decode_html_entities($content) {
return html_entity_decode($content);
}
add_filter( \'the_content\', \'wpse_56268_decode_html_entities\' );
取回帖子时,它将对编码字符进行解码,并将其打印为原始值。虽然我不推荐。
这是:
<strong>Below we have a list</strong>
<ul>
<li>List item 1</li>
<li>List item 2</li>
</ul>
将转换为:
<strong>Below we have a list</strong>
<ul>
<li>List item 1</li>
<li>List item 2</li>
</ul>