将类添加到<img/>获取发布内容

时间:2015-11-18 21:13:10

标签: wordpress

您能告诉我如何在Post Content中添加课程吗? 我有一个名为promotion的页面,它只包含我在{I}页面上通过Add Media上传的图片

<div class="container">
  <?php if ( have_posts() ) : ?>
    <?php while ( have_posts() ) : the_post(); ?>  
        <?php the_content(); ?>
    <?php endwhile; ?>
<?php endif; ?>  
</div>

在前端我得到了这个:

<img class="size-full wp-image-2202 alignright" src="http://rumioptical.com/wp-content/uploads/2014/11/Promotion-Banner.jpg" alt="Promotion Banner" width="800" height="640">

但我只需要

<img class="img-responsive" src="http://rumioptical.com/wp-content/uploads/2014/11/Promotion-Banner.jpg" alt="Promotion">

删除size-full wp-image-2202 alignright类和widtd and height属性并添加img-responsive

由于

1 个答案:

答案 0 :(得分:0)

使用文本编辑器而不是可视化编辑器编辑帖子。更改HTML中的属性以符合您的需要:

<img class="img-responsive" src="http://rumioptical.com/wp-content/uploads/2014/11/Promotion-Banner.jpg" alt="Promotion">