SlideShare a Scribd company logo
Plugin Development Guideline
Plugin Development Guideline
Plugin’s Directory
• my-plugin/
• /admin
• /assets
• /css/
• /images/
• /js/
• /classes
• /languages
• /templates
• my-plugin.php
Plugin Headers
/*
Plugin Name: My Plugin
Plugin URI: http://my-plugin.com/
Description: This describes my plugin in a short sentence
Version: 1.0
Author: WordPress Nepal
Author URI: http://my-plugins-author.com/
License: GPL2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Domain Path: /languages
Text Domain: my-plugin
*/
Using Hooks
• Using existing hooks
• add_action(), add_filter()
• Defining your own hooks
• do_action(), apply_filters()
• Using hooks from everywhere
Readme.txt
=== Plugin Name ===
== Description ==
== Installation ==
== Frequently Asked Questions ==
== Changelog ==
That’s all Folks
For Now :)

More Related Content

PPSX
Extending WordPress
PPT
Mobile for web
KEY
Device系APIの全体図
PDF
Middleware web APIs in PHP 7.x
PPTX
Bower - A package manager for the web
PDF
Modernizing Your WordPress Workflow with Grunt & Bower
PPTX
Grunt and Bower
PDF
Getting Started With Grunt for WordPress Development
Extending WordPress
Mobile for web
Device系APIの全体図
Middleware web APIs in PHP 7.x
Bower - A package manager for the web
Modernizing Your WordPress Workflow with Grunt & Bower
Grunt and Bower
Getting Started With Grunt for WordPress Development

Recently uploaded (20)

PPTX
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
Cost to Outsource Software Development in 2025
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
Patient Appointment Booking in Odoo with online payment
PPTX
Why Generative AI is the Future of Content, Code & Creativity?
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
AutoCAD Professional Crack 2025 With License Key
PDF
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
iTop VPN Crack Latest Version Full Key 2025
PPTX
assetexplorer- product-overview - presentation
PDF
Autodesk AutoCAD Crack Free Download 2025
PPTX
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
PDF
17 Powerful Integrations Your Next-Gen MLM Software Needs
PDF
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
Design an Analysis of Algorithms I-SECS-1021-03
Cost to Outsource Software Development in 2025
Reimagine Home Health with the Power of Agentic AI​
Patient Appointment Booking in Odoo with online payment
Why Generative AI is the Future of Content, Code & Creativity?
CHAPTER 2 - PM Management and IT Context
AutoCAD Professional Crack 2025 With License Key
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
iTop VPN Free 5.6.0.5262 Crack latest version 2025
Navsoft: AI-Powered Business Solutions & Custom Software Development
Wondershare Filmora 15 Crack With Activation Key [2025
iTop VPN Crack Latest Version Full Key 2025
assetexplorer- product-overview - presentation
Autodesk AutoCAD Crack Free Download 2025
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
17 Powerful Integrations Your Next-Gen MLM Software Needs
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
Ad
Ad

Plugin Development Guideline

  • 3. Plugin’s Directory • my-plugin/ • /admin • /assets • /css/ • /images/ • /js/ • /classes • /languages • /templates • my-plugin.php
  • 4. Plugin Headers /* Plugin Name: My Plugin Plugin URI: http://my-plugin.com/ Description: This describes my plugin in a short sentence Version: 1.0 Author: WordPress Nepal Author URI: http://my-plugins-author.com/ License: GPL2 License URI: https://www.gnu.org/licenses/gpl-2.0.html Domain Path: /languages Text Domain: my-plugin */
  • 5. Using Hooks • Using existing hooks • add_action(), add_filter() • Defining your own hooks • do_action(), apply_filters() • Using hooks from everywhere
  • 6. Readme.txt === Plugin Name === == Description == == Installation == == Frequently Asked Questions == == Changelog ==