-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow bulk edit of coauthors #747
base: develop
Are you sure you want to change the base?
Conversation
Thanks for this, @TheCrowned! In my brief testing, I ran into this fatal when attempting to delete a post:
|
@lschuyler Did you want to attempt to refresh this abandoned PR? |
Return `$post_data` in `theaction_bulk_edit_update_coauthors` function to prevent undefined errors. `wp_insert_post_data` is a filter so we need to return a value. When we aren't bulk editing, the `action_bulk_edit_update_coauthors` function still fires on every post data insert, so we need to return the value of the post data when we exit it early in L621 to prevent the undefined warnings. Also simplified the text instructions for the author bulk edit to emphasize that all previous authors are removed when new authors are added.
@rebeccahum: I've fixed the errors that were occurring here and the tests all pass again. I'm not wild on the idea that |
Hi, thank you for your work and commitment. Thank you |
Hello everybody, I installed on a Test site, but I still don't see the authors box. |
I only pick the changes of 3 files on this pull request, and it works as my expectation. |
Fixes #551.
Bulk edit of coauthors has been disabled for a long time. This PR finishes work initiated by psaikali@2ac1afb and makes it fully working, by actually updating the coauthors on bulk edit actions.