【发布时间】:2020-02-02 12:59:33
【问题描述】:
我正在尝试将我的帖子缩略图放在帖子本身旁边。此外,我想包含一些响应式断点,以便在移动视图中缩略图位于帖子顶部。我想使用引导框架。任何帮助表示赞赏:)
<div class="container-fluid the_loop">
<div class="col-4">
<?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
<img src="<?php the_post_thumbnail_url("post_image");?>" alt="img-fluid">
</div>
<div class="col-8">
<h2 id="title" href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</h2>
<p id="the_date"><?php the_date(); ?></p>
<p id="the_content"><?php the_content(); ?></p>
</div>
</div>
【问题讨论】:
标签: php html css wordpress twitter-bootstrap