关于WP如何在主页、分类页等上为每篇文章显示“预览”文本,您如何阻止它在本节中包含图像。
我不是在谈论每个帖子的特色图片,我是在谈论帖子中是否包含任何图片-我不希望它们显示在预览文本中。
这是输出内容的代码,例如。。
<?php the_content( __( \'Continue reading <span class="meta-nav">→</span>\', \'twentyeleven\' ) ); ?>
最合适的回答,由SO网友:Max Yudin 整理而成
将以下代码放置到主题中functions.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;
}
发件人
http://wordpress.org/support/topic/how-to-hide-images-from-front-page