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
6
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
WooCommerce hace mucho más que tiendas
nilovelez
0
2
Libertad de expresion y cerveza gratis
nilovelez
0
5
17 trucos de WooCommerce que me habría gustado conocer antes
nilovelez
0
3
Viaje a la prehistoria de WordPress
nilovelez
0
6
WPO en WordPress para reducir costes y aumentar beneficios
nilovelez
0
3
Introducción a las traducciones enWordPress
nilovelez
0
5
Seguridad en WordPress. Conoce a tu enemigo
nilovelez
0
2
Flash Talks - WordPress y QR en el mundo real
nilovelez
0
37
Como cargarse Wordpress
nilovelez
0
40
Other Decks in Technology
See All in Technology
Lambdaと地方とコミュニティ
miu_crescent
2
370
アジャイルでの品質の進化 Agile in Motion vol.1/20241118 Hiroyuki Sato
shift_evolve
0
180
Adopting Jetpack Compose in Your Existing Project - GDG DevFest Bangkok 2024
akexorcist
0
110
AWS Media Services 最新サービスアップデート 2024
eijikominami
0
200
Platform Engineering for Software Developers and Architects
syntasso
1
520
Lambda10周年!Lambdaは何をもたらしたか
smt7174
2
110
心が動くエンジニアリング ── 私が夢中になる理由
16bitidol
0
100
AIチャットボット開発への生成AI活用
ryomrt
0
170
開発生産性を上げながらビジネスも30倍成長させてきたチームの姿
kamina_zzz
2
1.7k
適材適所の技術選定 〜GraphQL・REST API・tRPC〜 / Optimal Technology Selection
kakehashi
1
700
安心してください、日本語使えますよ―Ubuntu日本語Remix提供休止に寄せて― 2024-11-17
nobutomurata
1
1k
Terraform Stacks入門 #HashiTalks
msato
0
360
Featured
See All Featured
Designing the Hi-DPI Web
ddemaree
280
34k
How GitHub (no longer) Works
holman
310
140k
Into the Great Unknown - MozCon
thekraken
32
1.5k
Scaling GitHub
holman
458
140k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
191
16k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Build The Right Thing And Hit Your Dates
maggiecrowley
33
2.4k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5k
Optimizing for Happiness
mojombo
376
70k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
229
52k
The Invisible Side of Design
smashingmag
298
50k
The Art of Programming - Codeland 2020
erikaheidi
52
13k
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