Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

MI-TV

Custom post type for Videos.

// Register Custom Post Type
function custom_post_type() {

	$labels = array(
		'name'                => _x( 'Vídeos', 'Post Type General Name', 'text_domain' ),
		'singular_name'       => _x( 'Vídeo', 'Post Type Singular Name', 'text_domain' ),
		'menu_name'           => __( 'MICE TV', 'text_domain' ),
		'parent_item_colon'   => __( 'Item Pai', 'text_domain' ),
		'all_items'           => __( 'Todos os Vídeos', 'text_domain' ),
		'view_item'           => __( 'Visualizar Item', 'text_domain' ),
		'add_new_item'        => __( 'Adicionar Novo Item', 'text_domain' ),
		'add_new'             => __( 'Adicionar Novo', 'text_domain' ),
		'edit_item'           => __( 'Editar', 'text_domain' ),
		'update_item'         => __( 'Atualizar', 'text_domain' ),
		'search_items'        => __( 'Buscar', 'text_domain' ),
		'not_found'           => __( 'Não Encontrado', 'text_domain' ),
		'not_found_in_trash'  => __( 'Não Encontrado na Lixeira', 'text_domain' ),
	);
	$args = array(
		'label'               => __( 'mice_tv', 'text_domain' ),
		'description'         => __( 'Vídeos da MICE TV', 'text_domain' ),
		'labels'              => $labels,
		'supports'            => array( 'title', 'editor', 'excerpt', 'thumbnail', ),
		'taxonomies'          => array( 'category', 'post_tag' ),
		'hierarchical'        => false,
		'public'              => true,
		'show_ui'             => true,
		'show_in_menu'        => true,
		'show_in_nav_menus'   => true,
		'show_in_admin_bar'   => true,
		'menu_position'       => 5,
		'can_export'          => true,
		'has_archive'         => true,
		'exclude_from_search' => false,
		'publicly_queryable'  => true,
		'capability_type'     => 'post',
	);
	register_post_type( 'mice_tv', $args );

}

// Hook into the 'init' action
add_action( 'init', 'custom_post_type', 0 );