I need a query that will get all the posts but only show 1 post per page.
$args = array(
'post_type'=> array('post', 'strange-or-love'),
'posts_per_page' => 1,
'orderby' => 'post_date',
'order' => 'DESC'
);
this is what i have so far.
My previous button
<?php posts_nav_link('','','« Previous Entries') ?>
moves to page 2 but the content is always the same. the content doesn't change...that is my problem.
If anyone could help i would really appreciate it.
Ilan