【发布时间】:2018-06-15 02:23:52
【问题描述】:
我正在尝试以以下附件格式显示帖子。但是,帖子一个接一个地显示..
预期输出:
这是我的代码
<?php
$type = 'post';
$args=array('category__in'=> array(4), 'post_type' => $type, 'posts_per_page'=>3, 'order'=>'DESC');
$my_query = new WP_Query($args);
$i=1;
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="row">
<div class="col-xs-12 col-sm-6" <?php if($i%2==1){?> style="float:left;" <?php }?> style="text-align: center;">
<figure class="pro-innerpage-img">
<?php the_post_thumbnail(); ?>
</figure>
</div>
<div class="col-xs-12 col-sm-6">
<div class="title_content">
<h4><?php the_title();?></h4>
<div><?php the_content(); ?></div>
</div>
</div>
</div>
<?php
$i++;
endwhile;
wp_reset_query();
?>
当前输出截图
【问题讨论】:
-
分享当前输出的截图。
-
每个标签只能有一个样式属性
-
@VasimVanzara,附上我当前的输出截图。
标签: php wordpress bootstrap-4