是的,此功能可用于register_post_type
, 通过show_in_menu
参数,但我不知道您使用的特定插件是否支持这一点。
add_action( \'init\', \'wpa70679_custom_types\' );
function wpa70679_custom_types() {
register_post_type( \'parent_type\',
array(
\'public\' => true,
\'labels\' => array(
\'name\' => \'Parent post type\'
)
)
);
register_post_type( \'child_type\',
array(
\'public\' => true,
\'show_in_menu\' => \'edit.php?post_type=parent_type\',
\'labels\' => array(
\'name\' => \'Child post type\'
)
)
);
}