SlideShare a Scribd company logo
GETTING STARTED WITH
WORDPRESS PLUGIN
DEVELOPMENT
Thomas Vitale | thomasvitale.com | @vitalethomas
WordCamp Torino 2017 | #wctrn
49 479PLUGINS on WordPress.org
2
Getting Started With WordPress Plugin Development
WHAT IS A PLUGIN?
1. INTRODUCTION TO PLUGINS
4
CORE
THEMES PLUGINS
5
WHY PLUGINS?
1. INTRODUCTION TO PLUGINS
6
DON’T TOUCH THE
CORE!
HODOR
Game of Thrones @ Home Box Office, Inc. All Rights Reserved.
7
CORE
THEMES PLUGINS
8
THE PLUGIN
TERRITORY
1. INTRODUCTION TO PLUGINS
9
THE PLUGIN TERRITORY
FUNCTIONS.PHP PLUGINSVS
10
THE MAIN CONCEPTS
2. PLUGIN BASICS
11
THE MAIN CONCEPTS
THE STRUCTURE
12
/wp-content/plugins/
Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY
myplugin.php
myplugin/
THE MAIN CONCEPTS
THE HEADER (MYPLUGIN.PHP)
/**
* Plugin Name: My Plugin
* Plugin URI:  https://thomasvitale.com/myplugin
* Description: The awesome plugin for WordPress Community.
* Version:     3.9.4
* Author:      Thomas Vitale
* Author URI:  https://thomasvitale.com
*/
13
PREFIXES!
PREFIXES EVERYWHERE!
BUZZ LIGHTYEAR
14
CORE
THEMES PLUGINS
15
THE MAIN CONCEPTS
WordPress Execution Flow
Custom Function
16
Icons from www.vecteezy.com
Core
THE MAIN CONCEPTS
WordPress Execution Flow
Custom Function
17
Icons from www.vecteezy.com
Core
EVENT-DRIVEN
PROGRAMMING
2. PLUGIN BASICS
18
HOOK
Getting Started With WordPress Plugin Development
Getting Started With WordPress Plugin Development
Getting Started With WordPress Plugin Development
CORE
PLUGINS
23
Icons from www.vecteezy.com
CORE
THEMES PLUGINS
24
ACTIONS
2. PLUGIN BASICS
25
ACTIONS
bob
function tom_ciak() {
// Print a paragraph
echo “<p>And action!</p>”;
}
add_action( ‘bob’, ‘tom_ciak’ );
1
2
26
Icons from www.vecteezy.com
WordPress Execution Flow
ACTIONS
Function1
Function3
Function2
27
Icons from www.vecteezy.com
WordPress Execution Flow
bob
ACTIONS
wp_head
LoadCSS
28
Icons from www.vecteezy.com
WordPress Execution Flow
FILTERS
2. PLUGIN BASICS
29
FILTERS
jack
function tom_adv( $content ) {
return $content .“Follow me!”;
}
add_filter( ‘jack’, ‘tom_adv’ );
1
2
30
Icons from www.vecteezy.com
WordPress Flow Execution
FILTERS
the_content
Function
31
Icons from www.vecteezy.com
WordPress Flow Execution
AN EXAMPLE
3. DEMO
32
Getting Started With WordPress Plugin Development
AN EXAMPLE
TOM BANNER
34
/wp-content/plugins/tom-banner/
Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY
tom-banner.php
css/
style.css
AN EXAMPLE
HEADER (TOM-BANNER.PHP)
/**
* Plugin Name: Tom Banner
* Plugin URI: https://thomasvitale.com/tom-banner
* Description: Show a fixed banner to promote your brand new e-book.
* Version: 3.9.4
* Author: Thomas Vitale
* Author URI: https://thomasvitale.com
* License: GPL2
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: thomas
* Domain Path: /languages
*/
35
AN EXAMPLE
CALLBACK FUNCTION (TOM-BANNER.PHP)
function tom_banner_html() { ?>
<div class="book-banner">
<p>
Do you like reading?
<a href="#">Download</a> my new free e-book!
</p>
</div>
<?php }
add_action( 'wp_footer', ‘tom_banner_html' );
36
AN EXAMPLE
STYLESHEET LOADING (TOM-BANNER.PHP)
function tom_load_css() {
wp_enqueue_style(
'tom-banner',
plugins_url( 'css/style.css', __FILE__ )
);
}
add_action( 'wp_enqueue_scripts', 'tom_load_css' );
37
AN EXAMPLE
STYLESHEET (CSS/STYLE.CSS)
.book-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
text-align: center;
padding: 10px 0;
background: #86151d;
min-height: 24px;
line-height: 24px;
color: #eeeeee;
font-size: 1em;
}
.book-banner p {
margin: 0;
padding: 5px;
}
.book-banner a {
color: #eee;
text-decoration: underline;
}
38
NEXT?
3. RESOURCES
39
RESOURCES
USEFUL RESOURCES
▸ WordPress Codex: https://codex.wordpress.org
▸ Plugin Developer Handbook: https://developer.wordpress.org/plugins/
▸ Professional WordPress: Design and Development, 3rd edition (Wrox), Brad
Williams, David Damstra, Hal Stern
▸ Smashing WordPress: Beyond the Blog, 4th edition, Thord Daniel Hedengren
▸ Codice sorgente plugin d’esempio e altre risorse: https://github.com/
ThomasVitale/GettingStartedWithWordPressPlugins
40
ARE YOU READY
TO DEVELOP YOUR
FIRST PLUGIN?
Thomas Vitale |@vitalethomas | #wctrn
41
This work is licensed under a Creative Commons Attribution 4.0 International License.

More Related Content

PDF
WordPress Performance optimization
PDF
Why it's dangerous to turn off automatic updates and here's how to do it
PDF
Gestione avanzata di WordPress con WP-CLI - WordCamp Torino 2017 - Andrea Car...
PDF
Ako na vlastne WP temy
PPTX
Anthony Somerset - Site Speed = Success!
PDF
WordCamp Finland 2015 - WordPress Security
PPTX
Ryan Duff 2015 WordCamp US HTTP API
PDF
The eggless Plone manifesto (or Plone the open source cms-as-a-service platf...
WordPress Performance optimization
Why it's dangerous to turn off automatic updates and here's how to do it
Gestione avanzata di WordPress con WP-CLI - WordCamp Torino 2017 - Andrea Car...
Ako na vlastne WP temy
Anthony Somerset - Site Speed = Success!
WordCamp Finland 2015 - WordPress Security
Ryan Duff 2015 WordCamp US HTTP API
The eggless Plone manifesto (or Plone the open source cms-as-a-service platf...

What's hot (20)

PDF
Professional WordPress Development with Vagrant - Andrea Cardinali - WordCam...
PDF
Making Magic with WP-CLI
PDF
Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014
PPT
Extending Your WordPress Toolbelt with WP-CLI
KEY
CSI: WordPress -- Getting Into the Guts
PDF
Building a community of Open Source intranet users
PPTX
How to develope plugin in wordpress: 6 simple steps.
PPTX
"Ensuring chances of theme acceptance in wordpress.org directory" on WordCamp...
PDF
PHPをさわらず作る!デザイナーさんのためのWordPress【超!初級】
PPTX
WordPress Hardening
PDF
光速テーマ開発のコツ
PDF
Mastering WordPress Vol.1
ODP
The Future Of WordPress Presentation
PPTX
Introduction to WordPress Child Theming, WordCamp Kansas City, 2015
PPTX
Intro to Plugin Development, Miami WordCamp, 2015
PDF
Coding with jetpack
ODP
Plone for python programmers
PDF
Approaches To WordPress Theme Development
PPTX
Wordpress customer support
Professional WordPress Development with Vagrant - Andrea Cardinali - WordCam...
Making Magic with WP-CLI
Extending your WordPress Toolbelt with WP-CLI - WordCamp Austin 2014
Extending Your WordPress Toolbelt with WP-CLI
CSI: WordPress -- Getting Into the Guts
Building a community of Open Source intranet users
How to develope plugin in wordpress: 6 simple steps.
"Ensuring chances of theme acceptance in wordpress.org directory" on WordCamp...
PHPをさわらず作る!デザイナーさんのためのWordPress【超!初級】
WordPress Hardening
光速テーマ開発のコツ
Mastering WordPress Vol.1
The Future Of WordPress Presentation
Introduction to WordPress Child Theming, WordCamp Kansas City, 2015
Intro to Plugin Development, Miami WordCamp, 2015
Coding with jetpack
Plone for python programmers
Approaches To WordPress Theme Development
Wordpress customer support
Ad

Similar to Getting Started With WordPress Plugin Development (20)

PPTX
Wordpress overview
PPTX
Introduction to WordPress Plugin Development, WordCamp North Canton, 2015
PDF
Managing WordPress Websites - Training Course - Feb 2015
PPTX
A peek into the world of WordPress plugin development
PDF
WordCamp Atlanta Presentation
PDF
Keep Your Code Organized! WordCamp Montreal 2013 Presentation slides
PDF
So, you want to be a plugin developer?
PDF
Write your first WordPress plugin
PDF
Introduction to plugin development
PDF
Seven deadly theming sins
PPTX
WordCamp Kent 2019 - WP 101: Themes & Plugins: What are they, and where do I ...
KEY
Intro to WordPress Plugins
PPTX
Keeping Your Themes and Plugins Organized.
PPTX
Praktikum Rekayasa Web, WordPress (1)
PDF
Bending word press to your will
PPTX
WP101 - Themes and Plugins
PDF
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
PDF
Word press theme and plugins WordCamp Presentation
PDF
Demystifying WordPress
PPTX
How to create your own WordPress plugin
Wordpress overview
Introduction to WordPress Plugin Development, WordCamp North Canton, 2015
Managing WordPress Websites - Training Course - Feb 2015
A peek into the world of WordPress plugin development
WordCamp Atlanta Presentation
Keep Your Code Organized! WordCamp Montreal 2013 Presentation slides
So, you want to be a plugin developer?
Write your first WordPress plugin
Introduction to plugin development
Seven deadly theming sins
WordCamp Kent 2019 - WP 101: Themes & Plugins: What are they, and where do I ...
Intro to WordPress Plugins
Keeping Your Themes and Plugins Organized.
Praktikum Rekayasa Web, WordPress (1)
Bending word press to your will
WP101 - Themes and Plugins
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
Word press theme and plugins WordCamp Presentation
Demystifying WordPress
How to create your own WordPress plugin
Ad

Recently uploaded (20)

PPT
isotopes_sddsadsaadasdasdasdasdsa1213.ppt
PPTX
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
PPTX
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
PDF
An introduction to the IFRS (ISSB) Stndards.pdf
PDF
The Internet -By the Numbers, Sri Lanka Edition
PPTX
presentation_pfe-universite-molay-seltan.pptx
PDF
Automated vs Manual WooCommerce to Shopify Migration_ Pros & Cons.pdf
PPTX
SAP Ariba Sourcing PPT for learning material
PPTX
522797556-Unit-2-Temperature-measurement-1-1.pptx
PDF
WebRTC in SignalWire - troubleshooting media negotiation
PPTX
Power Point - Lesson 3_2.pptx grad school presentation
PDF
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
PPT
Design_with_Watersergyerge45hrbgre4top (1).ppt
PPTX
Introuction about WHO-FIC in ICD-10.pptx
PPTX
introduction about ICD -10 & ICD-11 ppt.pptx
PDF
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
PPTX
innovation process that make everything different.pptx
DOCX
Unit-3 cyber security network security of internet system
PPTX
Slides PPTX World Game (s) Eco Economic Epochs.pptx
PDF
Unit-1 introduction to cyber security discuss about how to secure a system
isotopes_sddsadsaadasdasdasdasdsa1213.ppt
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
An introduction to the IFRS (ISSB) Stndards.pdf
The Internet -By the Numbers, Sri Lanka Edition
presentation_pfe-universite-molay-seltan.pptx
Automated vs Manual WooCommerce to Shopify Migration_ Pros & Cons.pdf
SAP Ariba Sourcing PPT for learning material
522797556-Unit-2-Temperature-measurement-1-1.pptx
WebRTC in SignalWire - troubleshooting media negotiation
Power Point - Lesson 3_2.pptx grad school presentation
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
Design_with_Watersergyerge45hrbgre4top (1).ppt
Introuction about WHO-FIC in ICD-10.pptx
introduction about ICD -10 & ICD-11 ppt.pptx
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
innovation process that make everything different.pptx
Unit-3 cyber security network security of internet system
Slides PPTX World Game (s) Eco Economic Epochs.pptx
Unit-1 introduction to cyber security discuss about how to secure a system

Getting Started With WordPress Plugin Development