Ok, so I’m pretty sure I just figured this out. It is working so far. Thanks to the 0 replies.
I knew that if I could figure out the total number of posts made on the last post date, then I could just set the ‘offset=$number_of_posts”. Then, this would enable me to show a list of previous entries prior to the last posting date.
See this topic on how to get the total number of posts made on the last posting date:
https://www.ads-software.com/support/topic/115069?replies=2
Then… adding this will create a list of 3 entries prior to last posting date.
So the whole thing looks like this:
<ul>
<?php
$post = $posts[0]; // Hack
if (is_day()) {
$likedate = 'Y-m-d ';
}
$count = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->posts WHERE post_date LIKE '" . get_the_time($likedate) . "%' AND post_date_gmt < '" . current_time('mysql', TRUE) . "' AND post_status = 'publish'");
?>
<?php query_posts("showposts=3&offset=$count"); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?><br /><span><?php the_time('F jS, Y') ?> - <?php wp_link_pages(); ?> <?php comments_number(__('<strong>0</strong> Comments'), __('<strong>1</strong> Comment'), __('<strong>%</strong> Comments')); ?></span></a></li>
<?php endwhile; else: ?>
<?php endif; ?>
</ul>
Have no idea how getting $count number works, doesn’t read very logical to me, but it works.
So, thanks to me and the totally irrelevant support topic I was able to stumble upon; I figured it out.