在注册时,可以将帖子类型设置为“分层”register_post_type
. 只需将“hierarchy”参数设置为true即可。
$args = array(
\'public\' => true,
\'publicly_queryable\' => true,
\'has_archive\' => true,
\'rewrite\' => true,
...
\'hierarchical\' => true,
...
\'supports\' => array( \'title\', \'editor\', \'author\', \'thumbnail\', \'excerpt\', \'comments\',\'page-attributes\' )
);
register_post_type(\'my-cpt\',$args);