试试这个
<?php
add_filter(\'the_content\',\'wpi_image_content_filter\',11);
function wpi_image_content_filter($content){
if (is_home() || is_front_page()){
$content = preg_replace("/<img[^>]+\\>/i", "", $content);
}
return $content;
}
?>
放置在您的函数中。php文件,像正常一样调用您的the\\u content()。这将允许您仍然拥有功能图像,但从主页中删除所有图像。如果要从其他页面中删除它们,只需将其添加到和||
--编辑--
你使用过滤器的方法是正确的,然后更换,:)只需要做一些挖掘。