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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Nilo Vélez
February 15, 2020
Technology
0
46
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
Playground, la mejor herramienta jamás inventada para enseñar WordPress
nilovelez
0
60
Diseña tu propio tema de bloques de WordPress sin código
nilovelez
0
120
Eventos WordPress de bajo coste y alto impacto
nilovelez
0
160
¿Sabes más que una IA?
nilovelez
0
79
¿Web propia, plataforma externa de reservas o mitad y mitad?
nilovelez
0
67
WooCommerce hace mucho más que tiendas
nilovelez
0
20
¿Web propia, plataforma externa de reservas o mitad y mitad?
nilovelez
0
22
Libertad de expresion y cerveza gratis
nilovelez
0
13
17 trucos de WooCommerce que me habría gustado conocer antes
nilovelez
0
13
Other Decks in Technology
See All in Technology
Exadata Database Service on Dedicated Infrastructure(ExaDB-D) UI スクリーン・キャプチャ集
oracle4engineer
PRO
8
7.1k
Shifting from MCP to Skills / ベストプラクティスの変遷を辿る
yamanoku
4
690
組織のSREを推進するためのPlatform EngineeringとEKS / Platform Engineering and EKS to drive SRE in your organization
chmikata
0
190
作りっぱなしで終わらせない! 価値を出し続ける AI エージェントのための「信頼性」設計 / Designing Reliability for AI Agents that Deliver Continuous Value
aoto
PRO
1
220
自動テストが巻き起こした開発プロセス・チームの変化 / Impact of Automated Testing on Development Cycles and Team Dynamics
codmoninc
3
1.2k
Serverless Agent Architecture on Azure / serverless-agent-on-azure
miyake
1
160
バクラクのSREにおけるAgentic AIへの挑戦/Our Journey with Agentic AI
taddy_919
2
1.1k
AIエージェント・エコノミーの幕開け 〜 オープンプロトコルが変えるビジネスの未来 〜
shukob
0
110
DX Improvement at Scale
ntk1000
3
390
LINE Messengerの次世代ストレージ選定
lycorptech_jp
PRO
19
7.6k
Claude Code Skills 勉強会 (DevelersIO向けに調整済み) / claude code skills for devio
masahirokawahara
0
270
S3はフラットである –AWS公式SDKにも存在した、 署名付きURLにおけるパストラバーサル脆弱性– / JAWS DAYS 2026
flatt_security
0
1k
Featured
See All Featured
ラッコキーワード サービス紹介資料
rakko
1
2.6M
Building a Modern Day E-commerce SEO Strategy
aleyda
45
8.8k
Making Projects Easy
brettharned
120
6.6k
Claude Code のすすめ
schroneko
67
220k
Effective software design: The role of men in debugging patriarchy in IT @ Voxxed Days AMS
baasie
0
250
What’s in a name? Adding method to the madness
productmarketing
PRO
24
4k
Leadership Guide Workshop - DevTernity 2021
reverentgeek
1
230
Optimizing for Happiness
mojombo
378
71k
Reality Check: Gamification 10 Years Later
codingconduct
0
2k
Game over? The fight for quality and originality in the time of robots
wayneb77
1
130
Applied NLP in the Age of Generative AI
inesmontani
PRO
4
2.1k
Self-Hosted WebAssembly Runtime for Runtime-Neutral Checkpoint/Restore in Edge–Cloud Continuum
chikuwait
0
390
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