How to Write a WordPress Plugin - Introduction

This post was written as part of the How to Write a WordPress Plugin series.
For any WordPress user, plugins are essential. WordPress Plugins allow those with little to no programming skills to extend the functionality of their blog. Plugins come in all shapes and sizes, and there is a plugin that does just about anything for WordPress.
As good as WordPress is as a standalone application, there are still things that WordPress lacks. Users are requesting more and more features for WordPress that would be very feasible to write as a plugin. There are many untapped ideas out there, and new ones created every day.
Having released three plugins already (not counting the custom ones I wrote), I am aware of some of the limitations of WordPress and wish to share some of the lessons I have learned (and am still learning) about creating WordPress plugins. As a result, I will be starting series that will discuss various topics regarding writing your own WordPress plugin. The series will start off very introductory and will assume your plugin knowledge is zilch.
Who is this Series For?
This series is for any WordPress user who is curious about or wants to learn how to write their own WordPress plugin. Readers of this series will have an intermediate knowledge of PHP, know a little JavaScript, and be decent at Cascading Style Sheets.
This plugin series will benefit theme designers, those that like to tinker with plugin code, and those that are interested in writing their own plugin from scratch.
Tools to Get the Job Done
To write plugins, any text editor will do. Here are the tools I personally use to create plugins.
- Dreamweaver
- Firefox
- Firebug Firefox Extension
- Web Developer Firefox Extension
- XAMPP with a local WordPress installation
This series assumes you have WordPress 2.1.x or greater installed.
Code Samples
All code I use will be available for download after each post in the Conclusion section. I will be building the code as I go along, so each download will be different. I will be creating a plugin that doesn’t really do anything other than to show you the basics of how a plugin works.
Since each post in this series builds on top of each other, it is recommended to read this series in the order it is presented.
I highly recommend not using the test plugin on a production WordPress installation. Instead, use a local WordPress installation.
Topics
I plan to start off really basic and move quickly into the more hard-core WordPress plugin functions. This series will not be a comprehensive micro-detail of plugin development, but will hopefully give you a nice foundation to start your own plugin development. If you have any questions or suggestions, please leave a comment or e-mail me using the Devlounge contact form (Ronald). I do ask that you not rely on Devlounge for support and instead use the WordPress Support forums.
Techniques
Some of the techniques I use in my code samples may not be the best way to present code and you may be cringing because I don’t have a lot of shortcuts. I apologize in advance. Everybody has a different coding style.
As far as plugin techniques, structure, behavior, and other nuisances, if there is a better and easier way that I overlooked, I am all ears (er, eyes).
Series Publication Schedule
A post from this series is planned to be published every two days. To stay up to speed on the series, I suggest you subscribe to the Devlounge feed.
Conclusion
Thank you for reading the series introduction. My hope is that this series will prove beneficial to the readers. Any feedback is welcome. Thank you.
Ronald is frequently found laying his thoughts out in strong, straight-forward articles on various web related topics. He is the author of the popular WordPress plugin
First time here, or frequent flyer. Whatever the case may be, we highly recommend 


Great! I’m looking forward to this series because I love WordPress and am using it on 5 different sites. Especially if it will cover code I don’t know or did not find on the official site - like making my life easier or so
I too am looking forward to this series! My wife’s blog uses wordpress, and I may need to add a little functionality to make things easier for her.
Great initiative! I’ll follow this series with great interest!
This is the greatest series ever written on Devlounge! I’m looking forward to each of them. I’ve already printed the first two parts of the series and will be studying them very carefully.
Thanks, Ronald!
btw, Mac users can install MAMP that will quickly set you up with Apache/MySQL server and PHP.
Ron - This is great. I’m glad you’re going to be doing this. I’m looking forward to the series.
Thank you to all who have expressed interest in the series. The series has been pre-written, so hopefully I will have covered enough ground to establish a foundation for your own plugin development.
Plugin development is very intensive and I could very well write a book and not cover enough material.
Thank you for your interest.
Ronald, you’ve put alot of work into this, great. I wrote a “How to write secure WordPress plugins” paper for blogsecurity.net. It may interest you on this projects (http://blogsecurity.net/wordpress/articles/article-280507/).
Thank you so much Ronald. I begin to learn how to write a wp plugin, this is a great start.
I am trying to modify your plugin a little. I want it to display the author’s name and URL so readers can click on it. This is the code I have modified
function addContent($content = ”) {
$devOptions = $this->getAdminOptions();
if ($devOptions[’add_content’] == “true”) {
$content .= “”.$devOptions[’content’];
$content .= ““.the_author().”“;
}
return $content;
I can’t get WordPress to display the right URL. Any idea what I am doing wrong?