• So here is what I have so far, I want to display my posts with 44 first 18 second and 36 third. Is this possible?

    <?php
    $the_query = new WP_Query( array( 'post__in' => array( 44, 18, 36 ) ) );
    if( have_posts() ) :
    while ($the_query->have_posts()) : $the_query->the_post();
    ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘How to display posts in the order I input them’ is closed to new replies.