最近用wordpress建了个个人博客,使用editor.md这个插件来写文章,在写公式的时候,右边预览是没有问题的,但是发布后从网页看多了个amp;请大神指
function wpse72941_content_filter( $content ) { $new_content = ”; foreach( preg_split( ‘/((\r?\n)|(\r\n?))/’, $content ) as $line ) { $new_content .= preg_replace( ‘/^>/’, ‘>’, $line ) . ‘\r\n’; } return $new_content;}add_filter( ‘the_content’, ‘wpse72941_content_filter’, 1 );