You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some (I believe, legitimate) cases where the Co-Authors column is failing to generate the correct values. One such example is the exports created in the Admin Columns plugin. I believe their plugin renders the list tables using WP_Query, but not actually doing a Loop. They, I suppose, rely on the manage_{$post->post_type}_posts_custom_column hook being used as advertised, where the post ID is taken from the callback's arguments. In the current Co-Authors code, the ID is taken from the global $post;, which, in these use cases, is not set.
The result is the "warning" below, which is accompanied by in an empty Co-Authors column in the export.
There are some (I believe, legitimate) cases where the Co-Authors column is failing to generate the correct values. One such example is the exports created in the Admin Columns plugin. I believe their plugin renders the list tables using WP_Query, but not actually doing a Loop. They, I suppose, rely on the
manage_{$post->post_type}_posts_custom_column
hook being used as advertised, where the post ID is taken from the callback's arguments. In the current Co-Authors code, the ID is taken from theglobal $post;
, which, in these use cases, is not set.The result is the "warning" below, which is accompanied by in an empty Co-Authors column in the export.
The text was updated successfully, but these errors were encountered: