If you have a magazine-like website, you might need to specify multiple authors for a single post. There’s a great plugin called Co-Authors Plus that will let you do this.
Once installed, you can use many template tags (see here), or you can use the CoAuthorsIterator Class to your specific needs, which is what I’m going to do.
The Post Info area of Genesis can be customized using a filter, but for it to work we’ll need a function that returns a result instead of echos it (the provided template tags echo the result). Even better, we could create a shortcode to be used in the post info section.
To set up the shortcode, add the following to your functions.php file:
That will create a shortcode that displays all the authors, with a link to their author archive page.
Finally, you’ll need to add your shortcode to a post info filter. See this post for more information on what you can put in your post info filter. My filter will simply show the authors followed by the date


Bill,
How would I do this for my Thesis theme with this plugin? Is it pretty similar? I’m hoping to have the multiple authors show up in the fashion of “Author 1, Author 2 and Author 3″ or “Author 1 and Author 2″ but I’ll settle for “Author 1, Author 2, Author 3″. I just want to make sure I can have all applicable authors show up in the headline.
Thanks,
Joshua
Instead of using a filter on genesis_post_info, you could write a function and hook it into thesis_hook_byline_item. Be sure to remove the Author from the byline in Thesis Options first.
For example (untested code):
Hi Bill,
thank you for this appreciated tutorial.
I would display, with coauthor plus plugin, also the list of (both) authors and co-authors in a sidebar, but all my attemps haven’t success. Could you kindly tell me where is the bug?
I’ve insert in functions.php of my theme
function get_coauthor_list() {
global $wpdb;
$authors = implode("','",get_terms('author',array('fields'=>'names')));
$sql = "SELECT ID " .
"FROM {$wpdb->users} " .
"WHERE user_login IN ('{$authors}') " .
"ORDER BY display_name";
return $wpdb->get_col($sql);
}
and in the sidebar.php file
<div class="author" id="author-">
<a href="">
but the result is a display of some co-authors and not other authors!
Do you know a different solution for achieve the target of a complete author/coauthor list?
Thank you,
Al
I’m sorry, but this is beyond the scope of my post. I recommend you try the coauthors plus support forum: http://wordpress.org/tags/co-authors-plus?forum_id=10
sorry,
the complete second code is this, below:
<div class="author" id="author-">
<a href="">
ok, thanks anyway