Change Author
Change Author
Description
Do you have a blog/website with a lot of contributing authors but you do not want to give them the rights to publish
the articles themselves for whatever reason? In that case it would be nice when you are able to give them credit for
what they wrote anyway. Since WordPress cannot override the author with a non-author by default, this plugin overrides
the Author meta-box with a meta box that can select any user.
So whenever you want to place an article that was written by someone else, you just create a user with subscriber role
(if he/she hasn’t already) and assign the article to that user!
Installation
Install via WordPress Admin
- Go to Admin > Plugins > Add New
- Either search for Change Author or upload the zip file and click “Install”
- After installation, activate it
Install via FTP
- First unzip the plugin file
- Using FTP go to your server’s wp-content/plugins directory
- Upload the unzipped plugin here
- Once finished login into your WP Admin and go to Admin > Plugins
- Look for Change Author and activate it
Faq
Installation Instructions
Install via WordPress Admin
- Go to Admin > Plugins > Add New
- Either search for Change Author or upload the zip file and click “Install”
- After installation, activate it
Install via FTP
- First unzip the plugin file
- Using FTP go to your server’s wp-content/plugins directory
- Upload the unzipped plugin here
- Once finished login into your WP Admin and go to Admin > Plugins
- Look for Change Author and activate it
Do I need to configure anything?
No, this plugin does not need a settings page.
I don’t see the meta box, where is it?
Click ‘Screen Options’ at the upper right corner and check the box next to ‘Author’.
Why can’t I just type the name of the person I want to credit as author instead of having to use a user account?
Well, some themes link the author name to the author archive and that needs a user account to work. So this plugin will not break such theme functions.
What post types are supported?
All public post types are supported, both built-in and custom.
Reviews
Just awesome
By vnkjoshi on January 3, 2019
Works great. Like it!
By romanbitca on August 31, 2018
No longer works...but here's a fix:
By Alex Mansfield (alexmansfield) on June 28, 2018
function add_subscribers_to_dropdown( $query_args, $r ) {
$query_args['who'] = '';
return $query_args;
}
add_filter( 'wp_dropdown_users_args', 'add_subscribers_to_dropdown', 10, 2 );
More details in the user contributed notes for the wp_dropdown_users_args filter.Not Compatible With Latest Version of WP
By clicksimply on May 13, 2018
Doesn't seem to work anymore
By agsrescue on December 18, 2017
At Last!
By Rik0399 on November 9, 2017
Easy and Works!
By God Aliens (godaliens) on September 15, 2017
Useful as heck and works great!
By ScottKursk on August 22, 2017
Very useful, missing feature in WordPress
By captainhypertext on June 1, 2017
Works and works well
By Goonerkev on September 3, 2016
EASY, so simple ... love it. Just go to quick edit and the author list is a drop down. Select who you want. Done.
Changelog
1.0
- Initial release
1.1
- Fixed translation
- Updated tags
1.2
- Updated to work on pages too (credits to @jondaley)
1.3
- Updated to support custom post types