Closed stuartshields closed 5 years ago
So I had an issue earlier today with the post_author not saving the user id, after some tracking down I found that Gutenberg is the cause. Unless I am missing something in the below code:
post_author
register_extended_post_type( 'gallery', [ 'show_in_rest' => true, 'rest_base' => 'gallery', ] );
Actually I believe this is related to Gutenberg itself and not this plugin.
You might need to add author to the post type support.
author
So I had an issue earlier today with the
post_author
not saving the user id, after some tracking down I found that Gutenberg is the cause. Unless I am missing something in the below code: