通常,父子关系是通过页面类型完成的。请参见我所附图像的右侧,其中显示的是“the right side of image I attached where is says”;父级;。在单个帖子类型中,我认为您还可以使用父子类别。可能对于两种帖子类型,您可以使用一种分类法,也可以使用父子类别。通常不建议使用。否则,我想您必须设置一个元字段并存储父ID。
一般来说,多个职位类型没有绩效增益,它们存储在同一个;wp\\U帖子;桌子通常使用多种立柱类型,如独立的筒仓。
这是一个自定义的层次结构帖子类型,其行为类似于页面。
add_action( \'init\', \'create_chapter_post_type\' );
function create_chapter_post_type() {
register_post_type( \'chapters\',
array(
\'labels\' => array(
\'name\' => __( \'Chapters\' ),
\'singular_name\' => __( \'Chapter\' ),
\'add_new\' => \'Add New Chapter\',
\'add_new_item\' => \'Add New Chapter\'
),
\'public\' => true,
\'hierarchical\' => true,
\'supports\' => array(\'title\', \'editor\', \'page-attributes\', \'custom-fields\')
)
);
}
默认情况下,页面也支持父子关系。