Ordering posts in get_posts
You can set the orderby to post__in. Here is a superior post loop: $args = [ ‘post__in’ => [ 1, 2, 3, 4 ], ‘orderby’ => ‘post__in’, ]; $q = new \WP_Query( $args ); if ( $q->have_posts() ) { while ( $q->have_posts() ) { $q->the_post(); ?> <article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>> <?php the_title(); … Read more