如果它以前工作过,它可能是一个挂接到\\u内容过滤器的插件。逐个禁用插件,看看这是否解决了问题。接下来,检查回调函数the_content
滤器
通过添加以下内容,可以查看\\u内容的每个回调:
add_action(\'template_redirect\', \'wpse_44152_template_redirect\');
function wpse_44152_template_redirect(){
global $wp_filter;
print_r($wp_filter[\'the_content\']);
}
通过在代码编辑器上执行“在文件中查找”代码搜索来查找列出的每个函数。过滤器回调必须返回$content数据才能使\\u content()正常工作。