我们有些朋友用WordPress搭建的是有HTML或者程序的网站,其中有 & 字符会被转义成"&"字符。这里,我们肯定不希望被转义的,我们如何处理呢?
// 禁止转义符号 by laozuo.org
add_filter( 'the_content', function( $string ) {
return preg_replace_callback( '|]*)>(.*?)|', function( $matches ) {
return ' . str_replace( '&', '&', $matches[1] ) . '>' . $matches[2] . '';
}, $string );
}, 10, 1 );