SlideShare a Scribd company logo
1 of 46
Extending WP




PART 2
Extending WordPress
Extending WP




CORE
Extending WP




core = essential WordPress files
Extending WP




DON’T
Extending WP




HACK
Extending WP




CORE
Extending WP
Don’t Hack Core



   WHY?
   Can’t Upgrade :(
Extending WP
Don’t Hack Core
Extending WP




PLUGINS
Extending WP
Plugins

       “Plugins are tools to extend the
   functionality of WordPress. The core of
    WordPress is designed to be lean, to
    maximize flexibility and minimize code
    bloat. Plugins offer custom functions
  and features so that each user can tailor
      their site to their specific needs.”
Extending WP
Hello World
Extending WP
Hello World
Extending WP
Hello World
Extending WP
Hello World
Extending WP
Hello World
Extending WP




PROGRAMMING
    YOUR
   PLUGIN
Extending WP




HOOKS
Extending WP




 TWO    Actions
TYPES   Filters
Extending WP




modify the default behavior of WP
Extending WP
Actions

 “Actions are the hooks that the WordPress
    core launches at specific points during
  execution, or when specific events occur.
 Your plugin can specify that one or more of
   its PHP functions are executed at these
         points, using the Action API.”
Extending WP
Actions


 hook_name = name of action hook
 your_function_name = name of function you have defined
 to be executed following the specified action hook
 priority (optional) = an integer that can be used to specify
 the order of action hooks. (default: 10)
 accepted_args (optional) = how many arguments your
 function takes
Extending WP
Actions
Extending WP
Actions
Extending WP
Actions
                      http://codex.wordpress.org/Plugin_API/Action_Reference




plugins_loaded, wp_head, wp_print_styles,
        wp_print_scripts, wp_footer,
wp_print_footer_scripts, add_attachment,
      add_category, delete_category,
       delete_post, edit_attachment,
  edit_category, edit_post, publish_page,
 publish_post, save_post, comment_post,
      edit_comment, delete_comment
Filters
                                     Extending WP



    “Filters are the hooks that WordPress
   launches to modify text of various types
 before adding it to the database or sending
  it to the browser screen. Your plugin can
      specify that one or more of its PHP
   functions is executed to modify specific
 types of text at these times, using the Filter
                      API.”
Extending WP
Filters


  tag = name of filter hook
  your_function_name = name of function you have defined
  to be apply filter
  priority (optional) = an integer that can be used to specify
  the order of filter hooks. (default: 10)
  accepted_args (optional) = how many arguments your
  function takes
Filters
          Extending WP
Extending WP
Filters
                         http://codex.wordpress.org/Plugin_API/Filter_Reference




wp_title, the_title, the_excerpt, the_content,
        the_author, login_headertitle,
      login_headerurl, login_message,
       comment_excerpt, widget_title,
        excerpt_length, excerpt_more
Extending WP
From WP.org...
Follow Coding Standards.
Use Unique Names.
Don’t hardcode DB prefixes but use $wpdb->prefix
instead. (ie. wp_)
SELECT only what you need.
Add define('WP_DEBUG', true); to your wp-config.php
file.
Extending WP
Extending WP




Adding Scripts (jQuery, etc.)
Extending WP




The “Wrong” Way
Extending WP
Extending WP




The Right Way
Extending WP
Extending WP
Extending WP
Extending WP




Real Example
Extending WP




2 Other Really
 Cool Things
Extending WP




 Transient API
       &
WP Events (Cron)
Extending WP
Transient API
Extending WP
WP Events
Extending WP




 Also check out WP Object Cache and plugin
caching solutions like WP Super Cache and W3
                  Total Cache.
ANY ?’s
WordPress Bootcamp Part 2 - Extending WordPress

More Related Content

What's hot

What's hot (12)

The Open-source Eclipse Plugin for Force.com Development, Summer ‘14
The Open-source Eclipse Plugin for Force.com Development, Summer ‘14The Open-source Eclipse Plugin for Force.com Development, Summer ‘14
The Open-source Eclipse Plugin for Force.com Development, Summer ‘14
 
So, you want to be a plugin developer?
So, you want to be a plugin developer?So, you want to be a plugin developer?
So, you want to be a plugin developer?
 
Mete Atamel
Mete AtamelMete Atamel
Mete Atamel
 
WordPress Theme Workshop: Theme Setup
WordPress Theme Workshop: Theme SetupWordPress Theme Workshop: Theme Setup
WordPress Theme Workshop: Theme Setup
 
Simpletest - A beginners guide
Simpletest - A beginners guideSimpletest - A beginners guide
Simpletest - A beginners guide
 
Automated testing with Drupal
Automated testing with DrupalAutomated testing with Drupal
Automated testing with Drupal
 
ADF 2.4.0 And Beyond
ADF 2.4.0 And BeyondADF 2.4.0 And Beyond
ADF 2.4.0 And Beyond
 
Building and Deployment of Drupal sites with Features and Context
Building and Deployment of Drupal sites with Features and ContextBuilding and Deployment of Drupal sites with Features and Context
Building and Deployment of Drupal sites with Features and Context
 
Automation of web attacks from advisories to create real world exploits
Automation of web attacks from advisories to create real world exploitsAutomation of web attacks from advisories to create real world exploits
Automation of web attacks from advisories to create real world exploits
 
Feeding Drupal in Real-Time
Feeding Drupal in Real-TimeFeeding Drupal in Real-Time
Feeding Drupal in Real-Time
 
Eclipse Overview
Eclipse Overview Eclipse Overview
Eclipse Overview
 
Django cms best practices
Django cms best practicesDjango cms best practices
Django cms best practices
 

Viewers also liked

Viewers also liked (6)

WordPress Bootcamp Part 3 - Themes
WordPress Bootcamp Part 3 - ThemesWordPress Bootcamp Part 3 - Themes
WordPress Bootcamp Part 3 - Themes
 
WordPress Bootcamp Part 1 - Introduction
WordPress Bootcamp Part 1 - IntroductionWordPress Bootcamp Part 1 - Introduction
WordPress Bootcamp Part 1 - Introduction
 
E-handel, konverteringsoptimalisering og webanalyse
E-handel, konverteringsoptimalisering og webanalyseE-handel, konverteringsoptimalisering og webanalyse
E-handel, konverteringsoptimalisering og webanalyse
 
Quick Guide to Web Usability & SEO
Quick Guide to Web Usability & SEOQuick Guide to Web Usability & SEO
Quick Guide to Web Usability & SEO
 
Universell utforming av digitale løsninger
Universell utforming av digitale løsningerUniversell utforming av digitale løsninger
Universell utforming av digitale løsninger
 
Open Source CMS
Open Source CMSOpen Source CMS
Open Source CMS
 

Similar to WordPress Bootcamp Part 2 - Extending WordPress

Write your first WordPress plugin
Write your first WordPress pluginWrite your first WordPress plugin
Write your first WordPress plugin
Anthony Montalbano
 
Plugins debugging and developing
Plugins debugging and developingPlugins debugging and developing
Plugins debugging and developing
briancolinger
 
Plug in development
Plug in developmentPlug in development
Plug in development
Lucky Ali
 

Similar to WordPress Bootcamp Part 2 - Extending WordPress (20)

WordPress Plugin Development For Beginners
WordPress Plugin Development For BeginnersWordPress Plugin Development For Beginners
WordPress Plugin Development For Beginners
 
Wordcamp2012 build your plugin
Wordcamp2012 build your pluginWordcamp2012 build your plugin
Wordcamp2012 build your plugin
 
Write your first WordPress plugin
Write your first WordPress pluginWrite your first WordPress plugin
Write your first WordPress plugin
 
How to Create a Custom WordPress Plugin
How to Create a Custom WordPress PluginHow to Create a Custom WordPress Plugin
How to Create a Custom WordPress Plugin
 
Plugin development demystified 2017
Plugin development demystified 2017Plugin development demystified 2017
Plugin development demystified 2017
 
Creating Your First WordPress Plugin
Creating Your First WordPress PluginCreating Your First WordPress Plugin
Creating Your First WordPress Plugin
 
Developing WordPress Plugins : For Begineers
Developing WordPress Plugins :  For BegineersDeveloping WordPress Plugins :  For Begineers
Developing WordPress Plugins : For Begineers
 
WordPress Plugin Development- Rich Media Institute Workshop
WordPress Plugin Development- Rich Media Institute WorkshopWordPress Plugin Development- Rich Media Institute Workshop
WordPress Plugin Development- Rich Media Institute Workshop
 
How to create your own WordPress plugin
How to create your own WordPress pluginHow to create your own WordPress plugin
How to create your own WordPress plugin
 
Developing Plugins For WordPress
Developing Plugins For WordPressDeveloping Plugins For WordPress
Developing Plugins For WordPress
 
Word press Plugins by WordPress Experts
Word press Plugins by WordPress ExpertsWord press Plugins by WordPress Experts
Word press Plugins by WordPress Experts
 
How To Write a WordPress Plugin
How To Write a WordPress PluginHow To Write a WordPress Plugin
How To Write a WordPress Plugin
 
Intro to WordPress Plugin Development
Intro to WordPress Plugin DevelopmentIntro to WordPress Plugin Development
Intro to WordPress Plugin Development
 
Plugins debugging and developing
Plugins debugging and developingPlugins debugging and developing
Plugins debugging and developing
 
Plug in development
Plug in developmentPlug in development
Plug in development
 
Developing WordPress Plugins
Developing WordPress PluginsDeveloping WordPress Plugins
Developing WordPress Plugins
 
WordPress Plugins
WordPress PluginsWordPress Plugins
WordPress Plugins
 
Extending WordPress
Extending WordPressExtending WordPress
Extending WordPress
 
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
 
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
 

More from Metronet (9)

Take Control of Your Wordpress Widgets
Take Control of Your Wordpress WidgetsTake Control of Your Wordpress Widgets
Take Control of Your Wordpress Widgets
 
Custom to public
Custom to publicCustom to public
Custom to public
 
WordPress Bootcamp Quiz
WordPress Bootcamp QuizWordPress Bootcamp Quiz
WordPress Bootcamp Quiz
 
WordPress Bootcamp Part 4 - Multisite, BuddyPress, bbPress, etc.
WordPress Bootcamp Part 4 - Multisite, BuddyPress, bbPress, etc.WordPress Bootcamp Part 4 - Multisite, BuddyPress, bbPress, etc.
WordPress Bootcamp Part 4 - Multisite, BuddyPress, bbPress, etc.
 
Online Omdømme Del2 Anfo April 2009
Online Omdømme Del2 Anfo April 2009Online Omdømme Del2 Anfo April 2009
Online Omdømme Del2 Anfo April 2009
 
Online Omdømme Del1 Anfo April 2009
Online Omdømme Del1 Anfo April 2009Online Omdømme Del1 Anfo April 2009
Online Omdømme Del1 Anfo April 2009
 
Blogg Anfo April 2009
Blogg Anfo April 2009Blogg Anfo April 2009
Blogg Anfo April 2009
 
Facebook Anfo April 2009
Facebook Anfo April 2009Facebook Anfo April 2009
Facebook Anfo April 2009
 
Twitter Anfo April 2009
Twitter Anfo April 2009Twitter Anfo April 2009
Twitter Anfo April 2009
 

Recently uploaded

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 

WordPress Bootcamp Part 2 - Extending WordPress

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n