What is the solution to create a custom post type with custom Meta Boxes 'Page Layout' ?
The following not working
register_post_type( 'myposttype',
array(
'label' => __('Title'),
'singular_label' => __('Item'),
'_builtin' => false,
'public' => true,
'show_ui' => true,
'show_in_nav_menus' => true,
'hierarchical' => true,
'capability_type' => 'page',
'rewrite' => array(
'slug' => 'mypostetype',
'with_front' => FALSE,
),
'supports' => array(
'title',
'editor',
'thumbnail',
'excerpt',
'custom-fields',
'page_layout',
'post-formats',
'comments')
)
);
Thanks














