如何在WordPress中禁用转义的html字符?

时间:2018-04-25 作者:Frontend Master

我试图在我的WordPress帖子中添加一些JavaScript代码,它正在转换“&;”到“&&;#38”,中断JavaScript代码。

如何禁用此转义?

1 个回复
SO网友:John Zenith

如果要编写一些代码,可以使用短代码:

add_shortcode( \'unescape_js\', \'add_js_code\' );

function add_js_code( $atts, $contents = \'\' )
{
    $contents = html_entity_decode( $content );
    return $contents;
}
用法-在文本编辑器中使用js代码&;更多js代码。。。[/unescape\\u js]

但根本不建议将js代码直接保存到DB中。

结束