Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Custom post types, fields & taxonomies
Search
Braulio Aquino
August 30, 2014
Programming
0
170
Custom post types, fields & taxonomies
Presentación del WordCamp Lima 2014
Braulio Aquino
August 30, 2014
Tweet
Share
More Decks by Braulio Aquino
See All by Braulio Aquino
¿Cómo comenzar a realizar trabajos con WordPress?
braulioaquino
0
1.8k
Automatización en WordPress: Hooks & Cron
braulioaquino
2
270
Un mejor WordPress para tus clientes
braulioaquino
1
400
Columnas personalizadas en listado de contenidos del wp-admin
braulioaquino
1
120
WordPress: Action & Filter Hooks
braulioaquino
1
290
Herramientas y recursos para editores
braulioaquino
0
300
De Blogger a WordPress
braulioaquino
0
64
Wordpress y el contenido externo
braulioaquino
0
170
Generando un API en JSON con WordPress
braulioaquino
0
420
Other Decks in Programming
See All in Programming
AI駆動のマルチエージェントによる業務フロー自動化の設計と実践
h_okkah
0
290
Hack Claude Code with Claude Code
choplin
8
2.8k
ソフトウェア設計とAI技術の活用
masuda220
PRO
25
6.7k
PHPカンファレンス関西2025 基調講演
sugimotokei
5
930
抽象化という思考のツール - 理解と活用 - / Abstraction-as-a-Tool-for-Thinking
shin1x1
1
530
Rails Frontend Evolution: It Was a Setup All Along
skryukov
0
320
初学者でも今すぐできる、Claude Codeの生産性を10倍上げるTips
s4yuba
16
13k
テスト駆動Kaggle
isax1015
1
880
PHPUnitの限界をPlaywrightで補完するテストアプローチ
yuzneri
0
270
Startups on Rails in Past, Present and Future–Irina Nazarova, RailsConf 2025
irinanazarova
0
290
ISUCON研修おかわり会 講義スライド
arfes0e2b3c
1
480
レベル1の開発生産性向上に取り組む − 日々の作業の効率化・自動化を通じた改善活動
kesoji
1
350
Featured
See All Featured
BBQ
matthewcrist
89
9.7k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
Docker and Python
trallard
45
3.5k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
KATA
mclloyd
30
14k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.8k
The Invisible Side of Design
smashingmag
301
51k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Code Review Best Practice
trishagee
69
19k
GraphQLの誤解/rethinking-graphql
sonatard
71
11k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
990
Transcript
Custom post types, fields & taxonomies Braulio Aquino
Custom post types No te quedes en páginas y entradas.
¿Páginas? • Suelen ser permanentes. • Son individuales. • Pueden
estar jerarquizados.
¿Entradas? • Actualización continua. • Orden cronológico. • Clasificación de
contenido.
Custom post types El motivo por el cual “WordPress no
es sólo para blogs”.
Custom fields No te quedes en títulos y contenido.
Campos comunes • Título. • Contenido. • Extracto. • Autor.
Custom fields • Subtítulo. • Dirección. • Correo de contacto.
• Archivos de descarga. ! Todo lo que necesites.
Custom taxonomies No te quedes en categorías y etiquetas.
Categorías • Puede usar jerarquías. • Clasificación general.
Etiquetas • No usa jerarquías. • Clasificación particular.
Custom taxonomies Formas de clasificación personalizadas.
Custom post types codex.wordpress.org/ Function_Reference/ register_post_type
Custom post types <?php register_post_type( $post_type, $args ); ?>
Custom post types Plugin: Custom Post Type UI
Custom post types • single-posttype.php ! • archive-posttype.php
Custom fields codex.wordpress.org/ Function_Reference/ add_post_meta
Custom fields <?php echo get_post_meta( $post->ID, 'custom_field', true ); ?>
Custom fields Plugin: Advanced Custom Fields
Custom taxonomies codex.wordpress.org/ Function_Reference/ register_taxonomy
Custom taxonomies <?php register_taxonomy( $taxonomy, $object_type, $args ); ?>
Custom taxonomies • taxonomy-taxonomy.php ! • taxonomy-taxonomy-term.php
Custom taxonomies Plugin: Ultimate Taxonomy Manager
Custom post types, fields & taxonomies Braulio Aquino @braulioaquino !
[email protected]
braulioaquino.com