阻止WordPress在非开机自检页面上显示图像

时间:2012-09-26 作者:Brett

关于WP如何在主页、分类页等上为每篇文章显示“预览”文本,您如何阻止它在本节中包含图像。

我不是在谈论每个帖子的特色图片,我是在谈论帖子中是否包含任何图片-我不希望它们显示在预览文本中。

这是输出内容的代码,例如。。

<?php the_content( __( \'Continue reading <span class="meta-nav">&rarr;</span>\', \'twentyeleven\' ) ); ?>

1 个回复
最合适的回答,由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

结束

相关推荐

images within style sheet

我希望有人能在这方面帮助我,因为这已经开始让我抓狂了。我已经搜索了好几个小时,想找到一种在我的样式表中放置图像路径的方法,但一直没有找到。路径不能是绝对路径或“主题相关”路径。解决问题的唯一方法是在html文件中添加以下内容:<style type=\"text/css\"> #menu .menu-drop .menu-label { background: url(<?php echo get_template_directory_uri().