我有一个引导4卡柱砌体状网格。我想从我的文章中显示六篇文章,我正在使用自定义查询来检索这些文章。一切都很好,但帖子没有按我想要的顺序显示。我不知道是因为卡片列引导设置还是因为wordpress查询。有没有一种简单的方法可以通过定制订单来订购已加载的帖子?
下面是我的wp查询示例
<?php
$clients = [\'199\',\'168\',\'86\',\'291\',\'113\',\'229\'];
$portfolio = new WP_Query(array(
\'post_type\' => \'post\',
\'status\' => \'published\',
\'category_name\' => \'Portfolio\',
\'posts_per_page\'=> 6,
\'post__in\' => $clients
));
?>
<div class="card-columns">
<?php if( $portfolio->have_posts() ): while( $portfolio->have_posts() ): $portfolio->the_post(); ?>
<div class="card hide">
<a href="<?php the_permalink(); ?>">
<img class="card-img-top w-100" src="<?php the_post_thumbnail_url(\'full\'); ?>" id="case-studies">
<div class="overlay"><h4 class="text-center" id="client-name"><?php the_title(); ?></h4></div>
</a>
</div>
<?php endwhile; ?>
<?php endif; wp_reset_postdata(); ?>
</div>