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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Braulio Aquino
August 30, 2014
Programming
0
190
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.9k
Automatización en WordPress: Hooks & Cron
braulioaquino
2
280
Un mejor WordPress para tus clientes
braulioaquino
1
430
Columnas personalizadas en listado de contenidos del wp-admin
braulioaquino
1
130
WordPress: Action & Filter Hooks
braulioaquino
1
300
Herramientas y recursos para editores
braulioaquino
0
310
De Blogger a WordPress
braulioaquino
0
71
Wordpress y el contenido externo
braulioaquino
0
170
Generando un API en JSON con WordPress
braulioaquino
0
430
Other Decks in Programming
See All in Programming
それ、本当に安全? ファイルアップロードで見落としがちなセキュリティリスクと対策
penpeen
7
2.4k
AI & Enginnering
codelynx
0
110
AIエージェントの設計で注意するべきポイント6選
har1101
7
3.4k
ThorVG Viewer In VS Code
nors
0
760
余白を設計しフロントエンド開発を 加速させる
tsukuha
7
2.1k
CSC307 Lecture 03
javiergs
PRO
1
490
Automatic Grammar Agreementと Markdown Extended Attributes について
kishikawakatsumi
0
180
Data-Centric Kaggle
isax1015
2
760
AtCoder Conference 2025
shindannin
0
1k
360° Signals in Angular: Signal Forms with SignalStore & Resources @ngLondon 01/2026
manfredsteyer
PRO
0
110
Patterns of Patterns
denyspoltorak
0
1.4k
OCaml 5でモダンな並列プログラミングを Enjoyしよう!
haochenx
0
120
Featured
See All Featured
Amusing Abliteration
ianozsvald
0
96
Art, The Web, and Tiny UX
lynnandtonic
304
21k
Writing Fast Ruby
sferik
630
62k
Ten Tips & Tricks for a 🌱 transition
stuffmc
0
64
More Than Pixels: Becoming A User Experience Designer
marktimemedia
3
320
What the history of the web can teach us about the future of AI
inesmontani
PRO
1
420
4 Signs Your Business is Dying
shpigford
187
22k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
38
2.7k
Between Models and Reality
mayunak
1
180
Applied NLP in the Age of Generative AI
inesmontani
PRO
4
2k
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
1
120
The Mindset for Success: Future Career Progression
greggifford
PRO
0
230
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