Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Marcin Pietrzak

    (@iworks)

    In file upprev.php change line 502 from:

    $where .= " AND post_date < '" . $post->post_date . "'";

    to this:

    $where .= " AND post_date > '" . $post->post_date . "'";

    diff for this:

    @@ -499,7 +499,7 @@
     {
         global $post;
         if ($post->post_date) {
    -        $where .= " AND post_date < '" . $post->post_date . "'";
    +        $where .= " AND post_date > '" . $post->post_date . "'";
         }
         return $where;
     }

    Thread Starter Anonymous User 11573096

    (@anonymized-11573096)

    Thanks, it’s working now. Great job.

    and … in line of the above question, is it may apply for the following pages instead of previous pages of this

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Next post instead of previous?’ is closed to new replies.