-
Notifications
You must be signed in to change notification settings - Fork 205
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
Authors now missing from the Posts list table after 3.6.0 update #1033
Comments
I was able to determine that, on 3.6.0, all of my post types are failing the After rolling back to 3.5.15, the authors column re-appears. My best guess is that there's some way that this Co-Authors-Plus/php/class-coauthors-plus.php Line 496 in 586e803
|
Commenting to add that Newspack has received several reports of this from our publishers. |
Seems related to this #1006 and specifically Because |
My above PR fixes this. I'm not sure if it's the solution that everyone will want/agree on, but it does fix the issue. |
One idea for consideration:
So in remove_post_type_support( get_post_type(), $this->coauthor_taxonomy ); with roughly this add_filter(
'quick_edit_dropdown_authors_args',
fn() => [ 'include' => [0] ]
);
|
@justinmaurerdotdev @douglas-johnson Thank you both for diving into this - so very helpful. I reviewed the (nicely documented) PR from @justinmaurerdotdev, but to keep things simple, I've gone for the more targetted and simpler approach suggested by @douglas-johnson and created #1038. I'd love it if you could both give it a test and see if that seems to be working as intended please. |
I've been working on an issue related to Co-Authors Plus with the WP List Table at
wp-admin/edit.php?post_status=publish&post_type=post
and I just saw there was an update. I went ahead and updated my local environment and noticed that the Authors column is completely missing. Weirdly, the regular Author column is also missing. I seemingly don't have any way to see the author for a post before I click to edit.I checked the code that I had previously been working with and noticed it's entirely missing from the updated plugin. Here's a link to the filters I was working with before, that appear to do at least part of the admin column handling: https://github.com/Automattic/Co-Authors-Plus/blob/33ae3b0c8adf54f0ad193caa5fa13f166fcc4ddc/co-authors-plus.php#L265C1-L268C100It's not just the filters missing. The functions are also gone. Was this intentional? Am I missing something?Edit: I figured out that PHPStorm's index had not fully updated so the search function hadn't found the new class yet. That said, I am still missing the Author/Authors column in the Posts table and not sure why.
The text was updated successfully, but these errors were encountered: