function pis_create_showcase()
{
register_post_type( 'pis_showcase', array(
'labels' => array(
'name' => __('Витрина'),
'singular_name' => __('Витрина'),
'add_new' => 'Добавить товар в витрину',
),
'public' => true,
'has_archive' => true,
'supports' => array('title', 'thumbnail', 'custom-fields'),
) );
}