你可以使用the_content 过滤器:
add_filter( \'the_content\', \'remove_script_tag\' );
function remove_script_tag( $content )
{
return strip_tags( $content, \'<script>\' );
}
当您还希望删除标记的内容时,可以使用以下选项:
add_filter( \'the_content\', \'remove_script_tag_and_content\' );
function remove_script_tag_and_content( $content )
{
$striped_text = preg_replace(\'@<script>.*?<\\/script>@si\', \'\', $content);
return $striped_text;
}