我目前正在與bootstrap的WordPress主題,我無法弄清楚如何在移動視圖中設置我的帖子換行符。 我想至少有向上的我的預覽圖像的右側4-5的話(目前它甚至還可以顯示在右側,看起來傻單個詞) 與Wordpress預覽圖像和引導線斷裂
我的FrontPage中的代碼如下所示:
<div class="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="row"><!-- Row Start -->
<div class="col-xs-12">
<h1><?php the_title(); ?></h1>
</div>
<div class="col-xs-12">
<?php if (has_post_thumbnail())
echo '<div class="post_thumb">' . get_the_post_thumbnail(null, 'medium') . '</div>';
?>
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>">Weiter zum kompletten Beitrag</a>
</div>
</div>
<div class="row trenner">
<div class="col-xs-12"><hr></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
謝謝!