Last active
January 23, 2019 09:32
-
-
Save alanef/4071aafa85f10d2a288d4ab94ec9c447 to your computer and use it in GitHub Desktop.
Show CPT under CPT in admin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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