$args = array(
'post_type' => 'slideshow'
);
$the_query = new WP_Query( $args );
Hi,
How would i change this query above so it only outputs the posts with for example id’s of 10,12,15,21 ?
$args = array(
'post_type' => 'slideshow'
);
$the_query = new WP_Query( $args );
Hi,
How would i change this query above so it only outputs the posts with for example id’s of 10,12,15,21 ?
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.