Well, I dont know, but you’ve perked my interest. I spent a few minutes googling it and came across this:
http://anthologyoi.com/awp
I don’t know if this will help you at all, I haven’t looked into it deeply yet. I just scanned the features, maybe it’ll give you somewhere to start?
Thread Starter
xanuex
(@xanuex)
At least I could interest someone else with my post 😛
I already have the plugin installed, although the plugin has many features (and maybe even the one I am looking for) it stays an overall plugin. I think I’m more looking for a specific solution for my problem.
this is the code I am using right now
<h2>Previous Entries</h2>
<ul class="block">
<?php
$myposts = get_posts('numberposts=5&offset='.$paged);
foreach ($myposts as $post) :
setup_postdata($post);
unset($categories);
foreach (get_the_category() as $category)
$categories[] = $category->cat_name;
?>
<li><a href="<?php the_permalink();?>"><span><?php the_title(); ?></span><em><?php the_date();?> in <?=implode(", ",$categories);?></em></a></li>
<?php endforeach;?>
</ul>
<span class="prev_entry"><?php next_posts_link('« Previous Entries') ?></span>
<span class="next_entry"><?php previous_posts_link('Next Entries »') ?></span>
I think I need to change the type of function used for showing ‘next/previous’-post to one of my own which just effects the above code but I actually don’t really know how 🙂
So if there is someone who can give me some strong hints I would be very glad!
Found a solution to this yet? Im looking for exactly the same thing :S