Susana Flow – Contenido para Vídeos
https://susanaflow.com/
if ( ! function_exists('susanaf_contenido_premium') ) { // Register Custom Post Type function susanaf_contenido_premium() { $labels = array( 'name' => _x( 'Contenidos Premium', 'Post Type General Name', 'text_domain' ), 'singular_name' => _x( 'Contenido Premium', 'Post Type Singular Name', 'text_domain' ), 'menu_name' => __( 'Contenido Premium', 'text_domain' ), 'name_admin_bar' => __( 'Contenido Premium', 'text_domain' ), 'archives' => __( 'Archivo de Contenido Premium', 'text_domain' ), 'attributes' => __( 'Atributos de Contenido Premium', 'text_domain' ), 'parent_item_colon' => __( 'Contenido Premium padre:', 'text_domain' ), 'all_items' => __( 'Todos los Contenido Premium', 'text_domain' ), 'add_new_item' => __( 'Agregar Contenido Premium', 'text_domain' ), 'add_new' => __( 'Añadir Nuevo', 'text_domain' ), 'new_item' => __( 'Nuevo Contenido Premium', 'text_domain' ), 'edit_item' => __( 'Editar Contenido Premium', 'text_domain' ), 'update_item' => __( 'Actualizar Contenido Premium', 'text_domain' ), 'view_item' => __( 'Ver Contenido Premium', 'text_domain' ), 'view_items' => __( 'Ver Contenidos Premium', 'text_domain' ), 'search_items' => __( 'Buscar Contenido Premium', 'text_domain' ), 'not_found' => __( 'No encontrado', 'text_domain' ), 'not_found_in_trash' => __( 'No encontrado en la papelera', 'text_domain' ), 'featured_image' => __( 'Imagen destacada', 'text_domain' ), 'set_featured_image' => __( 'Configurar imagen destacada', 'text_domain' ), 'remove_featured_image' => __( 'Remover imagen destacada', 'text_domain' ), 'use_featured_image' => __( 'Usar como imagen destacada', 'text_domain' ), 'insert_into_item' => __( 'Insertar en Contenido Premium', 'text_domain' ), 'uploaded_to_this_item' => __( 'Actualizar en este Contenido Premium', 'text_domain' ), 'items_list' => __( 'Listado de Contenidos Premium', 'text_domain' ), 'items_list_navigation' => __( 'Lista navegable de Contenidos Premium', 'text_domain' ), 'filter_items_list' => __( 'Filtro de lista de Contenidos Premium', 'text_domain' ), ); $rewrite = array( 'slug' => 'contenido-premium', 'with_front' => true, 'pages' => true, 'feeds' => true, ); $args = array( 'label' => __( 'Contenido Premium', 'text_domain' ), 'description' => __( 'Contenido Premium de SusanaFlow.com', 'text_domain' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'comments', 'revisions', 'custom-fields', 'post-formats' ), 'taxonomies' => array( 'category' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-lock', 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'rewrite' => $rewrite, 'capability_type' => 'page', ); register_post_type( 'Contenido Premium', $args ); } add_action( 'init', 'susanaf_contenido_premium', 0 ); }