1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Custom Post Type Sub-Page Test Plugin |
---|
4 | Version: 1.0 |
---|
5 | */ |
---|
6 | |
---|
7 | add_action('init', 'test_init'); |
---|
8 | |
---|
9 | function test_init() { |
---|
10 | register_post_type('mycustomposttype', array( |
---|
11 | 'label' => 'My Custom Post Type', |
---|
12 | 'show_ui' => true |
---|
13 | )); |
---|
14 | |
---|
15 | add_action('admin_menu', 'test_adminmenu'); |
---|
16 | } |
---|
17 | |
---|
18 | function test_adminmenu() { |
---|
19 | add_submenu_page( |
---|
20 | 'edit.php?post_type=mycustomposttype', |
---|
21 | 'My Custom Post Type Sub-Page', |
---|
22 | 'Test Sub-Page', |
---|
23 | 'read', |
---|
24 | 'customposttypesubpage', |
---|
25 | 'test_subpage' |
---|
26 | ); |
---|
27 | } |
---|
28 | |
---|
29 | function test_subpage() { |
---|
30 | echo 'Hello!'; |
---|
31 | } |
---|
32 | ?> |
---|