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
140
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
250
Un mejor WordPress para tus clientes
braulioaquino
1
350
Columnas personalizadas en listado de contenidos del wp-admin
braulioaquino
1
100
WordPress: Action & Filter Hooks
braulioaquino
1
250
Herramientas y recursos para editores
braulioaquino
0
240
De Blogger a WordPress
braulioaquino
0
51
Wordpress y el contenido externo
braulioaquino
0
160
Generando un API en JSON con WordPress
braulioaquino
0
410
Other Decks in Programming
See All in Programming
実践Dash - 手を抜きながら本気で作るデータApplicationの基本と応用 / Dash for Python and Baseball
shinyorke
2
210
ACES Meet におけるリリース作業改善の取り組み
fukucheee
0
110
CSC509 Lecture 01
javiergs
PRO
1
200
いまあるチームにフィットさせる Serverless そして Platform Engineeringへの挑戦 / Serverless Fits the Team You Have and Platform Engineering
seike460
PRO
2
1.2k
◯◯エンジニアになった理由
gessy0129
PRO
0
580
Pythonによるイベントソーシングへの挑戦と現状に対する考察 / Challenging Event Sourcing with Python and Reflections on the Current State
nrslib
3
850
A Journey of Contribution and Collaboration in Open Source
ivargrimstad
0
860
Cohesion in Modeling and Design
mploed
3
180
ビット演算の話 / Let's play with bit operations
kaityo256
PRO
3
140
CSC509 Lecture 02
javiergs
PRO
0
150
コードレビューと私の過去と未来
jxmtst
0
140
推しの夫に恋のGPS「ときメーター」#M5Stack #IoT #M5JPTour2024
riyu
0
220
Featured
See All Featured
Java REST API Framework Comparison - PWX 2021
mraible
PRO
28
7.5k
Fantastic passwords and where to find them - at NoRuKo
philnash
50
2.8k
Product Roadmaps are Hard
iamctodd
PRO
48
10k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
26
4k
No one is an island. Learnings from fostering a developers community.
thoeni
19
2.9k
Raft: Consensus for Rubyists
vanstee
136
6.6k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
25
640
Intergalactic Javascript Robots from Outer Space
tanoku
268
27k
The Invisible Customer
myddelton
119
13k
Building Adaptive Systems
keathley
37
2.1k
Build The Right Thing And Hit Your Dates
maggiecrowley
31
2.3k
Statistics for Hackers
jakevdp
796
220k
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