_Content()可停止提取图像

时间:2016-02-05 作者:Tom Withers

我创建了一个自定义的帖子类型来浏览日期、标题、缩略图和内容,有些帖子有图像和the_content() 正在浏览这些图片,我不知道如何阻止它这样做,有人能帮我解决这个问题吗?

我的代码:

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post">
    <div class="container">
        <div class="row">
            <div class="col-md-12">
                <div class="col-md-5">
                    <?php echo the_post_thumbnail(); ?>
                </div>
                <div class="col-md-6">
                    <h2><?php the_title(); ?></h2>
                    <h4><?php the_date(\'jS F Y\');?></h4>
                    <?php the_content();?>
                    <a href="<?php echo the_permalink(); ?>">Read More</a>
                </div>
            </div>
        </div>
    </div>
</div>
<?php endwhile; else:?>
    <h2>There are no blog posts</h2>
<?php endif; ?>

2 个回复
SO网友:mukto90

将此代码添加到functions.php

function mdc_remove_img($content) {
    $content = preg_replace("/<img[^>]+\\>/i", "", $content); 
    return $content;
}

add_filter( \'the_content\', \'mdc_remove_img\' );

SO网友:Tom Withers

我知道怎么做了,

而不是使用the_content(); Im正在使用the_excerpt(); 我只是在改变它带来的角色数量!

相关推荐

如何修改WP_INCLUDE/BLOCKS/LATEST_posts.php

我是WordPress开发的初学者,希望得到一些帮助。我在一个简单的WordPress网站上工作。基本上,用户希望在主页上显示最新的帖子。我使用了最新帖子块,并将其设置为显示整个帖子内容,现在用户不希望帖子标题链接到单个帖子页面(因为帖子的内容显示在主页上)。如何安全地修改模板文件,使其像h2标记一样使用,而不是在主题中使用的href标记。我知道您可以创建子主题并修改wp_content 文件,但我不确定如何处理中的文件wp_include. 我读到一些关于修改functions.php 但我不确定,如果