Stars: 275
Forks: 201
Pull Requests: 528
Issues: 468
Watchers: 131
Last Updated: 2023-09-15 18:14:01
Multiple bylines and Guest Authors for WordPress
License: GNU General Public License v2.0
Languages: Shell, CSS, PHP, JavaScript, Makefile, Gherkin
Stable tag: 3.5.15
Requires at least: 4.1
Tested up to: 6.3
Requires PHP: 5.6
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: authors, users, multiple authors, co-authors, multi-author, publishing
Contributors: batmoo, danielbachhuber, automattic, GaryJ
Assign multiple bylines to posts, pages, and custom post types with a search-as-you-type input box.
Assign multiple bylines to posts, pages, and custom post types via a search-as-you-type input box. Co-authored posts appear on a co-author's archive page and in their feed. Co-authors may edit the posts they are associated with, and co-authors who are contributors may only edit posts if they have not been published (as is core behavior).
Add writers as bylines without creating WordPress user accounts. Simply create a guest author profile for the writer and assign the byline as you normally would.
On the frontend, use the Co-Authors Plus template tags to list co-authors anywhere you'd normally list the author.
This plugin is an almost complete rewrite of the Co-Authors plugin originally developed by Weston Ruter (2007). The original plugin was inspired by the 'Multiple Authors' plugin by Mark Jaquith (2005).
Refer to our wiki for detailed documentation.
/wp-content/plugins/
directory. Alternately, you can install directly from the Plugin directory within your WordPress Install.If you've just installed Co-Authors Plus, you might notice that the bylines are being added in the backend but aren't appearing on the front end. You'll need to add the template tags to your theme before the bylines will appear.
When a user is deleted from WordPress, they will be removed from all posts for which they are co-authors. If you reassign their posts to another user, that user will be the co-author instead.
Yes! Co-Authors Plus can be activated on a site-by-site basis or network-activated. If you create guest authors, however, those guest authors will exist on a site-by-site basis.
A WordPress user will need the edit_others_posts
capability to assign co-authors to posts. This is typically granted to the Editor role but can be altered with the coauthors_plus_edit_authors
filter.
A WordPress user will need the list_users
capability to create new guest author profiles. This is typically granted to the Administrator role but can be altered with the coauthors_guest_author_manage_cap
filter.
Yes! A template tag called coauthors_wp_list_authors()
accepts many of the same arguments as wp_list_authors()
. Look in template-tags.php
for more details.
Yes! Guest authors can be disabled entirely through a filter. Having the following line load on init
will do the trick:
add_filter( 'coauthors_guest_authors_enabled', '__return_false' )