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
Diseña tu propio tema de bloques de WordPress sin código
nilovelez
0
13
Eventos WordPress de bajo coste y alto impacto
nilovelez
0
60
¿Sabes más que una IA?
nilovelez
0
26
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
Other Decks in Technology
See All in Technology
Snowflake のアーキテクチャは本当に筋がよかったのか / Data Engineering Study #30
indigo13love
0
290
少人数でも回る! DevinとPlaybookで支える運用改善
ishikawa_pro
4
1.8k
AI時代の知識創造 ─GeminiとSECIモデルで読み解く “暗黙知”と創造の境界線
nyagasan
0
160
AI によるドキュメント処理を加速するためのOCR 結果の永続化と再利用戦略
tomoaki25
0
110
AI工学特論: MLOps・継続的評価
asei
10
2k
Microsoft Learn MCP/Fabric データエージェント/Fabric MCP/Copilot Studio-簡単・便利なAIエージェント作ってみた -"Building Simple and Powerful AI Agents with Microsoft Learn MCP, Fabric Data Agent, Fabric MCP, and Copilot Studio"-
reireireijinjin6
1
160
マルチモーダル基盤モデルに基づく動画と音の解析技術
lycorptech_jp
PRO
2
270
会社もクラウドも違うけど 通じたコスト削減テクニック/Cost optimization strategies effective regardless of company or cloud provider
aeonpeople
2
380
2025/07/22_家族アルバム みてねのCRE における生成AI活用事例
masartz
2
140
Kiroから考える AIコーディングツールの潮流
s4yuba
1
400
From Live Coding to Vibe Coding with Firebase Studio
firebasethailand
1
320
Jitera Company Deck / JP
jitera
0
270
Featured
See All Featured
Documentation Writing (for coders)
carmenintech
72
4.9k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
130
19k
Building Adaptive Systems
keathley
43
2.7k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
8
720
Rails Girls Zürich Keynote
gr2m
95
14k
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.7k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
How GitHub (no longer) Works
holman
314
140k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
60k
Done Done
chrislema
184
16k
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