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
66
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
testingを眺める
matumoto
1
130
速いWebフレームワークを作る
yusukebe
5
1.7k
為你自己學 Python - 冷知識篇
eddie
1
340
Laravel Boost 超入門
fire_arlo
2
200
Improving my own Ruby thereafter
sisshiki1969
1
150
パッケージ設計の黒魔術/Kyoto.go#63
lufia
3
420
Microsoft Orleans, Daprのアクターモデルを使い効率的に開発、デプロイを行うためのSekibanの試行錯誤 / Sekiban: Exploring Efficient Development and Deployment with Microsoft Orleans and Dapr Actor Models
tomohisa
0
240
フロントエンドのmonorepo化と責務分離のリアーキテクト
kajitack
2
160
AI時代のUIはどこへ行く?
yusukebe
14
7.9k
個人軟體時代
ethanhuang13
0
310
[FEConf 2025] 모노레포 절망편, 14개 레포로 부활하기까지 걸린 1년
mmmaxkim
0
1.5k
Jakarta EE Core Profile and Helidon - Speed, Simplicity, and AI Integration
ivargrimstad
0
340
Featured
See All Featured
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
How GitHub (no longer) Works
holman
315
140k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.7k
Music & Morning Musume
bryan
46
6.8k
Raft: Consensus for Rubyists
vanstee
140
7.1k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.4k
Code Review Best Practice
trishagee
70
19k
The Straight Up "How To Draw Better" Workshop
denniskardys
236
140k
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