当我更改数组中帖子的顺序时,它们在页面上的显示顺序保持不变。如果我从数组中删除页面,它们也会消失。
试图改变它们的显示顺序,但没有发生。有什么想法吗?
<?php
$args = array(
\'post_type\' => \'page\',
\'post__in\' => array(69,67,59)
);
$my_tile_pages = new WP_Query( $args );
while ($my_tile_pages -> have_posts()) : $my_tile_pages -> the_post(); ?>
<div class="box vertical-esp">
<div class="innerBox" style="background: url(<?php echo wp_get_attachment_url( get_post_thumbnail_id() ); ?>) no-repeat; background-position: 50%; background-size: cover;">
<div class="titleBox">
<article>
<a href="<?php echo get_permalink(); ?>" rel="bookmark"><h3><?php echo get_the_title(); ?></h3></a>
</article><!-- #post-## -->
</div>
</div><!-- .innerBox -->
</div>
<?php endwhile;
wp_reset_postdata();?>