How to create a WordPress plugin
7 July 2024 (Updated 8 July 2024)
Create a basic plugin
At its simplest, a WordPress plugin is just a PHP file with a WordPress plugin header comment.
Here’s how to create a basic first plugin:
cd wp-content/plugins
mkdir hello-world && cd hello-world
vim hello-world.php
Write a basic plugin header comment:
Now, your plugin should be listed on the plugins page:

Use actions and filters to do things with your plugin
You can use WordPress’s actions and filters to make your plugin do things.
- Actions let you add or change WordPress functionality.
- Filters let you alter content as it’s loaded or displayed on the website.
There are three basic hooks you’ll typically use when creating a plugin:
- register_activation_hook(): Lets you run code when your plugin is activated by the WP admin user (e.g., add custom database tables or set default option values).
- register_deactivation_hook(): Lets you run code when your plugin is deactivated (e.g., remove temporal data like cache or temporary files).
- register_uninstall_hook() : Lets you run code when your plugin is uninstalled (e.g., remove records from the
options
table.
Here’s an example plugin that does various things on being activated, deactivated, and uninstalled:
Links
Tagged:
WordPress
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment