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
25
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
48
Eventos WordPress de bajo coste y alto impacto
nilovelez
0
87
¿Sabes más que una IA?
nilovelez
0
41
¿Web propia, plataforma externa de reservas o mitad y mitad?
nilovelez
0
12
WooCommerce hace mucho más que tiendas
nilovelez
0
15
¿Web propia, plataforma externa de reservas o mitad y mitad?
nilovelez
0
7
Libertad de expresion y cerveza gratis
nilovelez
0
9
17 trucos de WooCommerce que me habría gustado conocer antes
nilovelez
0
8
Viaje a la prehistoria de WordPress
nilovelez
0
10
Other Decks in Technology
See All in Technology
これがLambdaレス時代のChatOpsだ!実例で学ぶAmazon Q Developerカスタムアクション活用法
iwamot
PRO
8
1.1k
フレームワークを意識させないワークショップづくり
keigosuda
0
200
リセラー企業のテクサポ担当が考える、生成 AI 時代のトラブルシュート 2025
kazzpapa3
1
360
All About Sansan – for New Global Engineers
sansan33
PRO
1
1.2k
Contract One Engineering Unit 紹介資料
sansan33
PRO
0
8.8k
大規模サーバーレスAPIの堅牢性・信頼性設計 〜AWSのベストプラクティスから始まる現実的制約との向き合い方〜
maimyyym
10
4.9k
プロダクトのコードから見るGoによるデザインパターンの実践 #go_night_talk
bengo4com
1
2.6k
名刺メーカーDevグループ 紹介資料
sansan33
PRO
0
930
物体検出モデルでシイタケの収穫時期を自動判定してみた。 #devio2025
lamaglama39
0
210
いまからでも遅くない!SSL/TLS証明書超入門(It's not too late to start! SSL/TLS Certificates: The Absolute Beginner's Guide)
norimuraz
0
260
セキュアな認可付きリモートMCPサーバーをAWSマネージドサービスでつくろう! / Let's build an OAuth protected remote MCP server based on AWS managed services
kaminashi
3
340
スタートアップにおけるこれからの「データ整備」
shomaekawa
2
490
Featured
See All Featured
Code Reviewing Like a Champion
maltzj
526
40k
It's Worth the Effort
3n
187
28k
Building Applications with DynamoDB
mza
96
6.7k
Fireside Chat
paigeccino
40
3.7k
Reflections from 52 weeks, 52 projects
jeffersonlam
353
21k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
230
22k
Producing Creativity
orderedlist
PRO
347
40k
Automating Front-end Workflow
addyosmani
1371
200k
Documentation Writing (for coders)
carmenintech
75
5.1k
The Pragmatic Product Professional
lauravandoore
36
6.9k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Git: the NoSQL Database
bkeepers
PRO
431
66k
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