function my_custom_post_shows() {
$labels = array(
'name' => _x( 'Shows', 'post type general name' ),
'singular_name' => _x( 'Show', 'post type singular name' ),
'add_new' => _x( 'Add Show', 'book' ),
'add_new_item' => __( 'Add New Show' ),
'edit_item' => __( 'Edit Show' ),
'new_item' => __( 'New Show' ),
'all_items' => __( 'All Shows' ),
'view_item' => __( 'View Show' ),
'search_items' => __( 'Search Shows' ),
'not_found' => __( 'No shows found' ),
'not_found_in_trash' => __( 'No shows found in the Trash' ),
'parent_item_colon' => '',
'menu_name' => 'Shows'
);
$args = array(
'labels' => $labels,
'description' => 'Holds shows and events',
'public' => true,
'menu_position' => 5,
'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt', 'comments' ),
'has_archive' => true,
);
register_post_type( 'ffi-shows', $args );
}
add_action( 'init', 'my_custom_post_shows' );