如何在WordPress中仅显示POST中的文本 时间:2011-12-22 作者:ajay 如何在WordPress中检索不包含任何图片的帖子文本? 1 个回复 SO网友:weston deboer 您需要编辑wordpress主题才能执行此操作。如果知道如何执行此操作,则只需替换\\u content();如下所示:<?php ob_start(); the_content(\'Read the full post\',true); $postOutput = preg_replace(\'/<img[^>]+./\',\'\', ob_get_contents()); ob_end_clean(); echo $postOutput; ?>所有图片都将从您的帖子中删除。 结束 文章导航