WordPress让您定义帖子类型在您注册的参数中的显示位置。这是show_in_menu
论点您可以将其设置为true、false或希望其显示的页面的slug(字符串)。
那么,假设您已经有了一个post类型“main”。要显示另一个帖子类型,您需要设置show_in_menu
参数,如下所示:
<?php
// the register the post type
add_action( \'init\', \'wpse4178_register\' );
function wpse4178_register()
{
// probably some more args up here.
$args[\'show_in_menu\'] = \'edit.php?post_type=main\';
register_post_type( \'country\', $args );
}