custom admin screen or setting screen for a custom post type

I have this code for creating custom post type

add_action( 'init', 'create_sidebarone' );

function create_sidebarone() {
    register_post_type( 'sidebarone',
        array(
            'labels' => array(
                'name' => 'Sidebar One',
                'singular_name' => 'sidebarone',
                'add_new' => 'Add New',
                'add_new_item' => 'Add Sidebar One',
                'edit' => 'Edit',
                'edit_item' => 'Edit Sidebar One',
                'new_item' => 'New Sidebar One',
                'view' => 'View',
                'view_item' => 'View Sidebar One',
                'search_items' => 'Search Sidebar One',
                'not_found' => 'No Sidebar One found',
                'not_found_in_trash' => 'No Sidebar One found in Trash',
                'parent' => 'Parent Sidebar One'
            ),
            'public' => true,
            'menu_position' => 15,
            'supports' => array( 'title', 'editor', 'comments', 'thumbnail' ),
            'taxonomies' => array( '' ),
            'menu_icon' => get_template_directory_uri() . '/images/ggicon.png',
            'has_archive' => true
        )
    );
}

Now I want to achieve something to cater my needs, I want to create a custom admin screen or setting page for my custom post type, to be precise please refer to the image below:

Read More

This is the illustration of the custom post type that i’ve created from the code above
regular custom post type

Now, I want to customize the admin screen or the setting screen of that post type, like the image below:

enter image description here
Now as you can see, the admin screen or the setting screen of that post type has been customize. (the second image is an assume of what im trying to achieve, image edited)

So far, what i tried is the post type base from the first image from the codes above. Anyone, im open in any suggestion, recommendations and idea’s. Very much thank you in advance.

Related posts

1 comment

Comments are closed.