注册CPT时,需要手动添加对修订的支持。只有标题和编辑器设置为默认值。查看codex. 因此,如果需要启用修订,则需要像这样添加它
\'supports\' => array( \'title\', \'editor\', \'revisions\' ),
在您的
$args = array()
注册您的CPT时。
仅供参考,以下是您可以传递给“支持”的其他参数
\'title\'
\'editor\' (content)
\'author\'
\'thumbnail\' (featured image, current theme must also support post-thumbnails)
\'excerpt\'
\'trackbacks\'
\'custom-fields\'
\'comments\' (also will see comment count balloon on edit screen)
\'revisions\' (will store revisions)
\'page-attributes\' (menu order, hierarchical must be true to show Parent option)
\'post-formats\' add post formats, see Post Formats
EDIT
多亏了@jammypeach,重要的是要知道,只有在该帖子有实际修订之前,修订元框才会显示出来。如果没有修订,修订元框将不会显示