Create setting page in custom post type on wordpress

add_action('admin_menu' , 'tradmin_page_settings');
function tradmin_page_settings() {
add_submenu_page('edit.php?post_type=custom', 'Custom Post Type  Admin',   'Custom Settings', 'edit_posts', basename(__FILE__),     'custom_fuction');
}

Leave a Reply

Your email address will not be published. Required fields are marked *