wp custom post types - servicio video streaming · custom post types • pueden funcionar como...

38
WordPress Custom Post Types Una buena forma de darle a tu contenido el espacio que se merece.

Upload: others

Post on 09-Oct-2020

2 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

WordPress Custom Post TypesUna buena forma de darle a tu contenido el espacio que

se merece.

Page 2: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Jesus Garcia-Parrado

Alameda

Mi propósito es ayudarte para que tu negocio bril le en internet y se mantenga en el tiempo.

Page 3: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías
Page 4: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Qué os quiero contar hoy

• Qué son los Custom Post Types en WordPress.

• Qué utilidades tienen.

• Varios casos prácticos.

Page 5: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Tipos de Posts por defecto en WordPress

• Post (Post Type: 'post')

• Page (Post Type: 'page')

• Attachment (Post Type: 'attachment')

• Revision (Post Type: ‘revision')

• Custom CSS (Post Type: 'custom_css')

• Changesets (Post Type: 'customize_changeset')

Page 6: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Tipos de Posts por defecto en WordPress

• Post (Post Type: 'post')

• Page (Post Type: 'page')

• Attachment (Post Type: 'attachment')

• Revision (Post Type: ‘revision')

• Custom CSS (Post Type: 'custom_css')

• Changesets (Post Type: 'customize_changeset')

Page 7: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Un Ejemplo

Page 8: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Custom Post Types• Pueden funcionar como posts o como páginas

• Los podemos organizar por categorías, etiquetas o taxonomías personalizadas.

• Tienen una página indice aparte y pueden tener una plantilla personalizada para la página índice.

• Pueden tener todas, ninguna o cualquier combinación de la funcionalidad por defecto para los posts.

• Podemos recuperar estas entradas desde cualquier lugar utilizando un loop personalizado.

Page 9: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

¿Cómo se implementa un custom post type?

Mediante un Plugin

• Es la solución mas utilizada.

• Lo puedes utilizar con cualquier theme (plantilla).

• Lo puedes activar y desactivar independientemente del resto de funcionalidad.

Page 10: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

¿Cómo se implementa un custom post type?

Mediante un Theme

• En implementaciones personalizadas.

• El contenido depende del theme.

• Permiten construir funcionalidad avanzada.

Page 11: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

PluginEsta es la función que utilizaremos para dar de alta nuestro custom post type:

<?php register_post_type( $post_type, $args ); ?>

https://codex.wordpress.org/Function_Reference/register_post_type

En está página podéis encontrar toda la información y un ejemplo completo.

Page 12: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Fichero Plugin

Page 13: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Plugin<?php/** * Plugin Name: Lux Courses * Plugin URI: http://luxdesignworks.com * Description: Custom post type to store and handle Lux courses. * Version: 1.0.0 * Author: Jesus Garcia-Parrado Alameda * Author URI: http://luxdesignworks.com * License: GPL3 + */

Page 14: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Plugin/* Copyright 2016 Jesus Garcia-Parrado Alameda

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA*/

Page 15: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Pluginfunction lux_course_init() { $labels = array( 'name' => _x( 'Courses', 'post type general name', 'your-plugin-textdomain' ), 'singular_name' => _x( 'Course', 'post type singular name', 'your-plugin-textdomain' ), 'menu_name' => _x( 'Courses', 'admin menu', 'your-plugin-textdomain' ), 'name_admin_bar' => _x( 'Course', 'add new on admin bar', 'your-plugin-textdomain' ), 'add_new' => _x( 'Add New', 'course', 'your-plugin-textdomain' ), 'add_new_item' => __( 'Add New Course', 'your-plugin-textdomain' ), 'new_item' => __( 'New Course', 'your-plugin-textdomain' ), 'edit_item' => __( 'Edit Course', 'your-plugin-textdomain' ), 'view_item' => __( 'View Course', 'your-plugin-textdomain' ), 'all_items' => __( 'All Courses', 'your-plugin-textdomain' ), 'search_items' => __( 'Search Courses', 'your-plugin-textdomain' ), 'parent_item_colon' => __( 'Parent Courses:', 'your-plugin-textdomain' ), 'not_found' => __( 'No courses found.', 'your-plugin-textdomain' ), 'not_found_in_trash' => __( 'No courses found in Trash.', 'your-plugin-textdomain' ) );

Page 16: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Plugin $args = array( 'labels' => $labels, 'description' => __( 'Description.', 'your-plugin-textdomain' ), 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_icon' => 'dashicons-welcome-learn-more', 'query_var' => true, 'rewrite' => array( 'slug' => 'course' ), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => false, 'menu_position' => 5, 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ), 'taxonomies' => array('category','post_tag') );

register_post_type( 'course', $args );}add_action( 'init', 'lux_course_init' );

Page 17: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Pluginfunction lux_rewrite_flush() { lux_course_init(); flush_rewrite_rules();}register_activation_hook( __FILE__, 'lux_rewrite_flush' );}add_action( 'init', 'lux_course_init' );

Page 18: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Lux Courses Custom Post Type Plugin

Page 19: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Lux Courses Custom Post Type

Page 20: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Nuevo Lux Course

Page 21: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Nuevo Lux Course

Page 22: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Indice Lux Courses

Page 23: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Lux Course

Page 24: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Cursos Afectiva

Page 25: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Cursos Afectiva

Page 26: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Cursos Afectiva

Page 27: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Cursos Afectiva

Page 28: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Plugin Relacionado

Page 29: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Informes AGEPEM

Page 30: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Informes AGEPEM

Page 31: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Plugin Relacionado

Page 32: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Plugin Relacionado

Page 33: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Portfolio Lux

Page 34: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

!Gracias por vuestra

atención¡

@gpjalameda en Twitter

Lux Design Works & Love Your Website

Page 35: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

¡Gracias!

Page 36: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Agradecimientos

@WPMajadahonda @CowUpCo @HoyStreaming @hostfusion

Page 37: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

¿Preguntas?

Page 38: WP Custom Post Types - Servicio video streaming · Custom Post Types • Pueden funcionar como posts o como páginas • Los podemos organizar por categorías, etiquetas o taxonomías

Lux Design Works& Love Your Website