Provides an easy way to display the complete list of the an author's posts, including the posts where he's also co-author.
It solves two problems with the author page:
- It displays all the posts from the author despite any pre-definition of the maximum number of posts to be displayed.
- It counts the posts where the user is co-author, even if he's not the original poster.
The plugin was created in reference to the
author.php
example on the Wordpress.
On the
Plugin homepage you will find these description and instructions:
Usage
You have two options to call this plugin on your template (for instance the author.php):
- For the total number of posts of the author include: <?php total_posts($author, $curauth->user_login) ; ?>
- For the complete list of the author's posts include: <?php full_post_list($author, $curauth->user_login) ; ?>
Note that the arguments are to be writen like that.
Version 2.0 Note
This new version includes Internacionalization.
If you have the previous version 0.1 installed you just need to install the new files. You
don't need to
change the functions calls since they are compatible.
Requirements
You should be aware of the following points:
-
If you are using the multiple-authors plugin:
-
The co-author is added automatically once he edits the post.
- You can also add the co-author manually (see the next point).
-
If you are not using the multiple-authors plugin
or if you want to do it manually:
-
Add a costum key on the post. Use 'other_author' as key name, and the author login name as value.