注册帖子类型时,可以设置hierarchical 至真实值。
hierarchical (布尔)(可选)
帖子类型是否为层次结构(如页面)。允许指定父级。“supports”参数应包含“page attributes”,以在编辑器页面上显示父选择框。
默认值:false
注意:此参数计划用于页面。要小心,在为自定义帖子类型选择它时-如果您计划有许多条目(比如超过100条),您将遇到内存问题。将此参数设置为true后,WordPress将在您的帖子类型的每个管理页面加载上获取该特定帖子类型的所有条目以及所有元数据
然后确保supports阵列包括page-attributes 显示父菜单。
例如:
// Register post type
register_post_type(\'your-post-type\' , array(
\'labels\' => $labels,
\'hierarchical\' => true,
\'supports\' => array( \'title\', \'editor\', \'page-attributes\' )
) );
更多信息请访问
codex