View any single-post page from Mimbo Pro and you’ll notice two sidebar modules called “More from this category” and “More from this author”.
Why Is It Useful?
Pretend you’d discovered that story (”Kenya tourism, economy devastated by violence”) via random Google search. You might finish reading, know nothing else about the site, and hit your ‘Back’ button. As a designer, you want to help users explore topics in a forward or sideways motion from anywhere on the site. You can accomplish this by pulling in related content and providing logical jumping-off points, without requiring users to work backward.
Online newspapers like The Times use this principle. This article on Hillary Clinton is supported by smaller modules like political cartoons and related election coverage:
Politically-minded readers are now immersed in a topic they already enjoy, and are more likely to dig deeper into a whole section of the website rather than just one story. Good information-design connects the page to the interests of the user. Think of Pandora’s scrolling interface and the way it begins to ‘know’ your musical taste, compelling you to visit more often.
The Code
Here’s a simplified version of the code Ben wrote for Mimbo Pro, which must be included outside of the loop:
<?php
//Gets category and author info
global $wp_query;
$cats = get_the_category();
$postAuthor = $wp_query->post->post_author;
$tempQuery = $wp_query;
$currentId = $post->ID;
// related author posts
$newQuery = "posts_per_page=5&author=" . $authorPosts;
query_posts( $newQuery );
$authorPosts = "";
$count = 0;
if (have_posts()) {
while (have_posts()) {
$count++;
the_post();
if( $count<4 && $currentId!=$post->ID) {
$count++;
$authorPosts .= '<li><a href="' . get_permalink() . '">' . the_title( "", "", false ) . '</a></li>';
}
}
}
// related category posts
$catlist = "";
forEach( $cats as $c ) {
if( $catlist != "" ) { $catlist .= ","; }
$catlist .= $c->cat_ID;
}
$newQuery = "posts_per_page=5&cat=" . $catlist;
query_posts( $newQuery );
$categoryPosts = "";
$count = 0;
if (have_posts()) {
while (have_posts()) {
the_post();
if( $count<4 && $currentId!=$post->ID) {
$count++;
$categoryPosts .= '<li><a href="' . get_permalink() . '">' . the_title( "", "", false ) . '</a></li>';
}
}
}
$wp_query = $tempQuery;
?>
Then inside the loop, call the functions like this:
<h4>More from this category</h4> <ul> <?php echo $categoryPosts; ?> </ul> <h4>More from this author</h4> <ul> <?php echo $authorPosts; ?> </ul>
How’s it Work?
This whole task would be easy if we were pulling from a single static category or author. The query_posts function offers simple parameters. But pulling that information dynamically is slightly trickier.
Ben explains further:
All we need is work out which category/author the post is in and use that data to get the information. 5 posts are grabbed – then, when looping through the posts, we double check to make sure that the current post is not being linked to redundantly (this feature is not currently in Mimbo Pro but will be in the next update).
Because of the layout of the theme, we need to do all of this before the post is displayed. At the time I found the easiest method was to save the current page’s data as a new variable ($tempQuery = $wp_query;), do all the work, and then reassign the values so that the page can be updated as normal. This works great, but if I was to write it again I would use a new instance of the wp_query object, as described here by Ronald Huereca.
No matter how you code it, supporting your posts with related content is valuable to readers who want additional context and to bloggers who want a stickier site.


Follow me on Twitter
12:37 am
Two things: a question and a thought.
Does this check to make sure that posts aren’t duplicated between the category query and the author query? My quick examination of the code makes me think no, but I could certainly be missing something.
I’m also rather intrigued by the possibility that with a few modifications this code could be used for fetching posts that share a tag (or tags) with the current post. Categories and tags could be a useful pair for blogs with a single author.
Oh, and thanks for giving us “behind the scenes” details about Mimbo Pro. I wish more premium themes developers were as generous with such thoughts as you’ve been.
9:36 am
Does this check to make sure that posts aren’t duplicated between the category query and the author query?
Not yet, but that’s something we’re working on for the next version.
I’m also rather intrigued by the possibility that with a few modifications this code could be used for fetching posts that share a tag (or tags) with the current post.
Exactly, I think there’s a handful of other useful things to do with it. Let us know if you implement anything.
Oh, and thanks for giving us “behind the scenes†details about Mimbo Pro.
No problem, I hope to do more of it. I don’t think any of this stuff should be treated like it’s shrouded in mystery. I hope the tutorials can spark other ideas in the WP community.
1:10 pm
Great tutorial Darren.
I gave this a shot on Knoxify.com without any luck. Perhaps I’m missing tweaks on my end? Thanks.
CP
11:37 pm
Darren, you talked about the timesonline relevant and thought about the design of the mimbo pro, could be lighter than the present, the style and timesonlie nyt.
The Mimbo Pro has the potential to become one of the most complete for the Wordpress, if you enlarge more a home, provide a color scheme cleaner and mild, include some special pages as the WP Remix and the Revolution.
In all, he is a great issue!
even more …
4:23 am
I love this. I was just trying to figure out if there was any blatant way to manipulate what’s in the codex to do something similar to this, or if there was a plugin, but for 2.5.1? No such luck (yet.)
Thanks for the share. Gives a little bit of insight for how I should be thinking about this!
4:48 pm
@ david
You can avoid duplication, hack the above code and include
$do_not_duplicate = $post->ID;right after the call for the_post(); and then use
== $do_not_duplicateright after if( $countID
Code is untested, so do it at your own risk (hint- backup your files).
4:54 pm
@ Erica,
There is a plugin that does more than pull content based on category/author, it uses keyword density to match posts. Just Google “wordpress+related+entries”.
Also, WordPress might bring this feature to WP 2.6.x
8:51 pm
@Sunny: thanks for the recommendations!
BTW, I haven’t forgotten about your question about capitalizing the ‘P’ in WordPress, but I still don’t have a compelling answer ;)
2:35 am
Hey y’all,
I’m using Mimbo Pro, and I use the above category/author technique in my single posts.
I wrote an article a month ago that solves the duplicate content issue and am successfully using it with Mimbo Pro.
How to: Avoid Duplicate Posts
12:38 pm
Thanks Ronald, I’m looking into implementing that now.
2:35 pm
@Darren,
Sounds good. If you need the code I used, I can send it over.
2:06 pm
This is pretty nifty. I wanna try using it in my new theme.
8:42 am
Hi Darren
I did try to implement that technique (tried both in and out the loop) but nothing appeared on my blog… :-( Did I miss something important ?
Thanks for your help
8:48 am
Thanks a lot. Great idea. I will try to implement this on mine blog :).
Regards,
mGz
11:31 am
I found that my error was in not listing all the categories. I only got a few results when I knew there were more categories. Excellent tip! Thank you
2:07 am
This is great!
And it works so good :)
Is there any way to exclude posts from the same category ofcourse but have a special meta key? How whould one do that?
7:43 am
In local, if I use this script, the comments pagination doesn’t work correctly.
11:12 am
After much searching for code help to create a list of more post by the same author, I found this nugget! Great code if you fix the error on line 10 – $authorPosts should be $postAuthor. Incredible code to share with the WordPress community. Ben obviously knows what he is doing.
5:29 am
is there a way to do this straight in the address bar?
like adding ?posts_per_page=50 or &showposts=50 at the end of the link?
it doesn’t override the default 10 posts setting for me
11:47 am
Great tip and thanks for sharing.
But for some odd reason I cannot get the code to display the posts from the same author. Instead it just shows the latest posts that are made by all authors.
And as a bonus, it doesn´t show the correct amount of posts either. It is set to show 6, it shows only 3 at most.
Using Wordpress 2.9 and I am confused to say the least. I copied everything, placed it outside the loop, called it the right way and everything. Categories work just fine, but not the author posts :(
Any tips or update for this code to 2.9?
5:16 pm
Hello Amigos excellent, that if I want to connect with Tags $ tags and
also put the time and date of creation of every related article,
greetings from Mexico.
9:54 am
Great, thanks for this post, it really helped me out. :)
I removed the condition which excluded the current post from the list (&& $currentId!=$post->ID), and in this way have created a sort of ‘table of contents’ from a category. I have sorted the posts in such a way that the first post in the list is the Introduction, the second post Chapter One, and so one.
To better let the user know where he is in the category (for example in Chapter 3), I would like to give the link of the current post in the list a different style (such as bold) (i.e.make Chapter 3 bold and give the rest of the list the normal style, so the user knows he’s now reading Chapter 3). Can someone give me a suggestion as to how to realize this?
Once again, thanks for this post, and I hope someone can give me some suggestions!
Regards,
Josh
9:05 am
Outside the box! This is the key :) Works great, thank you very much!
9:05 am
Sorrryy – I meant outside the loop :)))