Skip to content

Instantly share code, notes, and snippets.

@alanef
Last active January 23, 2019 09:32
Show Gist options
  • Select an option

  • Save alanef/4071aafa85f10d2a288d4ab94ec9c447 to your computer and use it in GitHub Desktop.

Select an option

Save alanef/4071aafa85f10d2a288d4ab94ec9c447 to your computer and use it in GitHub Desktop.
Show CPT under CPT in admin
add_action( 'init', function () {
register_post_type( 'cpttop', array(
'labels' => array(
'name' => 'Top CPT',
'singular_name' => 'Top CPT',
),
'show_ui' => true
) );
} );
add_action( 'init', function () {
register_post_type( 'cptsub', array(
'labels' => array(
'name' => 'Sub CPT',
'singular_name' => 'Sub CPT',
),
'show_ui' => true,
'show_in_menu' => 'edit.php?post_type=cpttop'
) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment