Yep, I’m in desperate need of this, too.
Maybe something needs to be changed in wp-includes/link-template.php?
Nothing I’ve tried does anything, though.
I’m also having a strange issue with listed subcategory posts in the sidebar. To begin with, all subcategory post titles are listed – but when you get so far down the list, the remaining title links disappear, and the only thing you can do is click on the next-post link which takes you to the first post in the next subcategory.
I’m guessing this could be something to do with the date stamps, or the post count… but I don’t know.
Here’s what I have in the sidebar section that lists the subcategory titles:
<?php
$IDOutsideLoop = $post->ID;
global $post;
$myposts = get_posts('showposts=100&category=175');
foreach($myposts as $post) :
?>
<li<?php if(is_single() && $IDOutsideLoop == $post->ID) print ' class="current-post-item"'?>><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
Any ideas anyone?