Let three categories and their IDs:
cat1 = 1 (parent)
cat2 = 2 (child of cat1, parent of cat3)
cat3 = 3 (child of cat2)
Let each category has 3 posts, they are: post1, post2, post3.
And each posts are written by a specific author whose name is “author” and id is “99”.
How can I list posts as sub-items of each category? It should look like:
Author Name
- cat1
- Post1
- Post2
- Post3
- cat2
- Post1
- Post2
- Post3
- cat3
- Post1
- Post2
- Post3
We have also shown you how to display related posts with a WordPress plugin YARPP which has its own formula of determining which posts is related or not. Some of our users asked us if it was possible to display related posts by same author which we think is a pretty handy feature for multi-author blogs. So in this article, we will show you how to display related posts by the same author in WordPress without a plugin.
First, open your themeâs functions.php file and add the following code:
Then you need to open your single.php file (for twenty ten theme, loop-single.php), and paste the following code inside the loop where you like:
The code above will basically display 5 recent posts by the same author, and it also make sure that there are no duplicates (i.e the current post will not be in the list). This is a very simple trick that does the trick without any hassles.
You can further customize the display by adding post thumbnails or other styling by editing the output lines of the function