我注册了自定义帖子类型。但是,只有通过“管理”面板中的“经典编辑器”创建的帖子才具有作者ID。并且在Gutenberg编辑器中创建的注释没有作者ID(设置为0)。
// register Notes toye
$myargs = array(
'show_in_rest' =>true,
'public'=>false,
'show_ui'=>true, //show in admin
'menu_icon' => 'dashicons-welcome-write-blog',
'supports'=>array( 'title','editor'),
'labels'=>array(
'name'=>'Notes',
'singular_name'=>'Note',
'add_new_item' => 'Add new Note',
'edit_item' => 'Edit Note',
'all_items' => 'All Note',
));
register_post_type( 'note', $myargs );
我仅使用2个插件:Justin Tadlock的成员和Advanced自定义字段。