Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working with single.php and I am showing posts in a loop that belong to a particular category.

First I show all the posts in the category on a blog template page and then user will click one of the posts to see the details.

That's when I use single.php to display the details of the 'current post' .

On single.php, below the details of the current post, I want a second loop that will show the other posts in the category : 'the related posts' .

This will make it easy for user to find the other posts without having to click back to the main blog template page.

I can do all of this so far so good.

Now, it is important to explain that the posts belong to a logical order of instructions.

Once you have read the oldest post in the category, you want to read the next oldest and then the next oldest and so on.

This is okay, because in the 'related posts' loop I can order by ASC and then it will display the posts in order correctly. (I was smart enough to add the posts to Wordpress in order so that the date/time stamp of each post would reflect the logical order of the instructions.)

THE PROBLEM IS:

From the loop of 'related posts' (located below the content of the current post on single.php)

I want to exclude the posts that are OLDER than the date of the current post.

Here is my code for the related posts loop so far:

<?php
    $this_post = $post;
    $category = get_the_category(); $category = $category[0]; $category = $category->cat_ID;
    $posts = get_posts('numberposts=6&offset=0&orderby=post_date&order=ASC&category='.$category);
    $count = 0;
    $blog_text_num = 10;

    foreach ( $posts as $post ) {
    if ( $post->ID == $this_post->ID || $count == 5) {
    unset($posts[$count]);
    }else{
    $count ++;
    }
    }
    ?>
<?php if ( $posts ) : ?>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.