经过半天的努力和询问队友,我终于明白了。在上面的wpscholar链接中,我更改了这行代码。
// Surface all Gutenberg blocks in the WordPress REST API
$post_types = get_post_types_by_support( [ \'editor\' ] ); // change this line
$post_types = [\'post\', \'page\', \'post-revision\']; // to this
这以修订后类型为目标,并以古腾堡块返回其内容。
希望这对某人有帮助