Add metabox in submenu page on custom post type
-
Hi folks.
I have a custom post type and create a submenu page for settings:
add_action('admin_menu', 'post_type_subpage'); function post_type_subpage() { add_submenu_page( 'edit.php?post_type=mycustomposttype', 'Configs', 'Configs Start Page', 'edit_post', 'mypost-configs', 'post_type_subpage_content' ); } function post_type_subpage_content(){ echo "<h1>Configs...</h1>"; }
Is possible insert metaboxes in this menu page? How to?
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Add metabox in submenu page on custom post type’ is closed to new replies.