Haven’t slept in about 30 hours now, can someone please help as the below code doesn’t work, it just displays all posts etc :|
<?php $args = array
(
'page' => array(139, 54)
);
$loopy = new WP_Query($args);
while ($loopy->have_posts()) : $loopy->the_post(); ?>
<div class="item"><?php the_title();
echo '<br ?>';
echo '</div>';
endwhile;
?>