不带图片的摘录 时间:2015-11-23 作者:Mattia Del Franco 我正在Wordpress索引中使用此函数:<?php echo get_the_excerpt(); ?> 但是,如果文章前50个单词中包含一个图像,我会得到以下形式的图像链接:发动机:http://i.imgur.com/UUsXR3w.jpg如何从摘录中排除图像? 2 个回复 SO网友:guna seelan 您可以尝试以下代码。 $content = get_the_excerpt(); $content = preg_replace("/<img(.*?)>/si", "", $content); echo $content; preg_replace 将从帖子内容中删除图像标记内容。 SO网友:Mayeenul Islam 如果您确实想显示内容的摘录,而不是定义的摘录,可以使用:echo wp_trim_words( get_the_content(), 55, \'…\' ); 资源:wp_trim_words()wp_trim_excerpt()get_the_excerpt()get_the_content() 文章导航