• Servus,

    I need to accomplish something like this:

    for ( $i = 0; $i < $darray['max']; $i++ ) {
    		$list=$darray[$i]['pID'];
    		array_push($stack,$list);
    	}
    		$args= array('p=' => $stack);
    		$temp_query = new WP_Query($args);
    		while ($temp_query->have_posts()) : $temp_query->the_post();

    This will work with pages using the codex mentioned posts__in, but how can I solve this with straight post IDs ?

    Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can use posts__in for posts, just put the ids in an array

    <?php
    $args=array(
      'posts__in' => array(5,12,2,14,7),
      'post_type' => 'post',
      'post_status' => 'publish',
      'caller_get_posts'=> 1
    );
    $my_query = null;
    $my_query = new WP_Query($args);
    if( $my_query->have_posts() ) {
      echo 'List of Posts';
      while ($my_query->have_posts()) : $my_query->the_post(); ?>
        <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
        <?php
      endwhile;
    }
    wp_reset_query();  // Restore global post data stomped by the_post().
    ?>

    Thread Starter utzutz

    (@utzutz)

    thanks .. gonna try n report if works !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Listing posts by a pre-filled Array !’ is closed to new replies.