快速浏览一下该插件,就会发现它从一个选项加载过滤器,trueedit_options
. 您可以将筛选器添加到option_trueedit_options
并检查加载该选项的上下文,然后返回空数组。它继续运行init
不过,我不知道你会怎么决定。
另一个选项是在头文件中重新添加过滤器。如果你进去看看/wp-includes/default-filters.php
您将看到添加到内容中的所有过滤器,这些过滤器可能会被插件删除:
add_filter( \'the_content\', \'wptexturize\' );
add_filter( \'the_content\', \'convert_smilies\' );
add_filter( \'the_content\', \'convert_chars\' );
add_filter( \'the_content\', \'wpautop\' );
add_filter( \'the_content\', \'shortcode_unautop\' );
add_filter( \'the_content\', \'prepend_attachment\' );