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
Conociendo a Dolly. De la ñapa al plugin
Search
Nilo Vélez
February 15, 2020
Technology
0
12
Conociendo a Dolly. De la ñapa al plugin
Taller impartido en la WordCamp Chiclana 2020
Nilo Vélez
February 15, 2020
Tweet
Share
More Decks by Nilo Vélez
See All by Nilo Vélez
Eventos WordPress de bajo coste y alto impacto
nilovelez
0
51
¿Sabes más que una IA?
nilovelez
0
21
WooCommerce hace mucho más que tiendas
nilovelez
0
13
¿Web propia, plataforma externa de reservas o mitad y mitad?
nilovelez
0
4
Libertad de expresion y cerveza gratis
nilovelez
0
8
17 trucos de WooCommerce que me habría gustado conocer antes
nilovelez
0
8
Viaje a la prehistoria de WordPress
nilovelez
0
10
WPO en WordPress para reducir costes y aumentar beneficios
nilovelez
0
10
Introducción a las traducciones enWordPress
nilovelez
0
21
Other Decks in Technology
See All in Technology
KubeCon + CloudNativeCon Japan 2025 Recap
ren510dev
1
360
Understanding_Thread_Tuning_for_Inference_Servers_of_Deep_Models.pdf
lycorptech_jp
PRO
0
170
20250707-AI活用の個人差を埋めるチームづくり
shnjtk
4
3.4k
WordPressから ヘッドレスCMSへ! Storyblokへの移行プロセス
nyata
0
440
OPENLOGI Company Profile
hr01
0
67k
KubeCon + CloudNativeCon Japan 2025 に行ってきた! & containerd の新機能紹介
honahuku
0
120
Connect 100+を支える技術
kanyamaguc
0
190
Yamla: Rustでつくるリアルタイム性を追求した機械学習基盤 / Yamla: A Rust-Based Machine Learning Platform Pursuing Real-Time Capabilities
lycorptech_jp
PRO
4
230
Lambda Web Adapterについて自分なりに理解してみた
smt7174
6
160
ビズリーチが挑む メトリクスを活用した技術的負債の解消 / dev-productivity-con2025
visional_engineering_and_design
3
6.4k
LangChain Interrupt & LangChain Ambassadors meetingレポート
os1ma
2
290
Lufthansa ®️ USA Contact Numbers: Complete 2025 Support Guide
lufthanahelpsupport
0
130
Featured
See All Featured
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
Art, The Web, and Tiny UX
lynnandtonic
299
21k
Optimizing for Happiness
mojombo
379
70k
Gamification - CAS2011
davidbonilla
81
5.3k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
107
19k
How to Ace a Technical Interview
jacobian
277
23k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
960
Building a Modern Day E-commerce SEO Strategy
aleyda
42
7.4k
Unsuck your backbone
ammeep
671
58k
A better future with KSS
kneath
239
17k
Embracing the Ebb and Flow
colly
86
4.7k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
46
9.6k
Transcript
Conociendo a Dolly. De la ñapa al plugin. Material: https://1qr.es/dolly
None
None
None
None
Nilo Vélez
2004 Editor EditPlus Control de versiones Dreamweaver Webs corporativas Flash
Foros PHPbb Tiendas osCommerce Sitios grandes o complejos PHP + panel propio Wikis WikiWikiWeb Blogs blogger
2009 Editor EditPlus Control de versiones Dropbox Webs corporativas jQuery
UI Foros Simple Machines Forum Tiendas Paypal Checkout Sitios grandes o complejos PHP + framewework propio Wikis MediaWiki Blogs WordPress
2014 Editor Sublime Text Control de versiones Git Webs corporativas
WordPress Foros WordPress + bbPress Tiendas WordPress + WooCommerce Sitios grandes o complejos WordPress + código propio Wikis WordPress Blogs WordPress
The WordPress Way
None
None
Nuestras dos tareas 1. Añadir el código de verificación de
Search Console 2. Añadir un enlace de donación a las entradas
Temas hijos https://codex.wordpress.org/es:Temas_hijos https://childthemewp.com/
/wp-content/themes/mi-tema/style.css /* Theme Name: Mi Primer Tema Author: Nilo Vélez
Author URI: https://www.nilovelez.com Description: Mi primer tema para WordPress. */
/wp-content/themes/mi-tema/style.css /* Theme Name: Mi Primer Tema Author: Nilo Vélez
Author URI: https://www.nilovelez.com Description: Mi primer tema para WordPress. Template: twentyseventeen */
Action Hooks (Ganchos de acción) Cuando pase algo, haz algo
https://developer.wordpress.org/plugins/hooks/actions/ https://codex.wordpress.org/Plugin_API/Action_Reference https://wordpress.org/plugins/simply-show-hooks/
Action Hooks (Ganchos de acción) <?php function nilo_funcion() { //
haz algo } add_action('init', 'nilo_funcion');
Filter Hooks (Ganchos de filtro) Intercepta algo, modifícalo y devuélvelo
https://developer.wordpress.org/plugins/hooks/filters/ https://wordpress.org/plugins/simply-show-hooks/
Filter Hooks (Ganchos de filtro) <?php function nilo_filtro_titulo( $title )
{ return 'Título: ' . $title; } add_filter('the_title', 'nilo_filtro_titulo');
None
Plugin Handbook https://developer.wordpress.org/plugins/
/wp-content/plugins/mi-plugin/mi-plugin.php <?php /** * Plugin Name: Mi primer plugin */
/wp-content/plugins/mi-plugin/mi-plugin.php <?php /** * Plugin Name: Mi primer plugin *
Description: Este es mi primer plugin * Author: Nilo Vélez * Author URI: https://www.nilovelez.com * Version: 1.0
¡Ahora te toca hacer tu propio plugin!
One more thing...
¡Gracias! @NiloVelez