How to Build a WordPress Plugin

The Problem

Every so often the WordPress plugin directory does not offer a complete solution to a problem you are having. When this happens, sometimes the best option is to dig into the WordPress Plugin API and build what you need.

wordpress-org

A Development Environment

To begin, you need a development environment. Due to the inherent power and complexity of this type of addition to WordPress, when working with the Plugin API you should not be modifying a live WordPress installation.

We all use Mac’s, so there is a very handy, packaged development environment called MAMP available to us. Installing it is as simple as downloading the .dmg file from the website, mounting it and dragging the MAMP folder into your Applications folder.

Just moments after installing MAMP and starting the packaged Apache and MySQL servers, I am up and running with a complete development environment.

Getting the Correct Version of WordPress

It is always recommended to use the latest version of WordPress. However, this is not always possible due to your server environment, customer requests, time constraints and so-on. As a result, we need to determine our target WordPress version.

The most reliable way to determine which version of WordPress you are running is to look at the source of wp-includes/version.php in your production installation. This file will tell you which code version and database revision you are currently running.

We are using 2.7.1 in production, which happens to be the latest stable release. If you are using an older version, check out the WordPress Release Archive. They have downloads for versions all the way back to 0.71.

release-archive

Installing WordPress

WordPress maintains a very simple installation process. Simply load your development environment in a browser and follow the instructions.

wordpress-install

The Plugin Directory

WordPress has a directory wp-content/plugins where all plugins are installed. Plugins can be simple single-file scripts, or occupy their own directory and have numerous directories and files within that.

The plugin directory is special in that it is automatically scanned by WordPress for plugins when you view the "Plugins" screen in the WordPress admin.

Placing a single file, myplugin.php, in the plugins directory with some basic information in a comment will give us an idea as to how our plugin will be loaded.

myplugin-step-1

However, the fact your plugin appears in this list does not guarantee it is functioning properly. It is up to you to build and test your plugin just as you would any other piece of software. Also, our plugin does literally nothing, so activating it would not do much.

plugin-list

A Dashboard Widget for Active Plugins

For our first plugin, we will be asking WordPress for all the information it has on active plugins. We will then display this information in a dashboard widget. While this may not be useful by itself, it opens up numerous possibilities for other plugins, as well as providing a boilerplate for other dashboard-enabled plugins you might want to build.

Hooking Into Actions & Filters

WordPress has literally hundreds of hooks, classified as either actions or filters, your plugin can interact with. These hooks can be as simple as letting your plugin know the footer has been printed, or as complex as playing with information before it is inserted into the database.

For our purposes, we are interested in if the admin dashboard is going to be loaded. Since WordPress 2.5 an action named wp_dashboard_setup has been available.

myplugin-step-2

Getting Information About the WordPress Installation

WordPress has a number of functions well documented online. However, some of the more interesting functions remain only documented in the source code itself. Do not be afraid to dig around in the code to find functions which might help you.

After a bit if digging about how WordPress handles plugins, I discovered the get_plugins() function. This function returns a complete list of plugins, even if they are not active. The function itself can be found in wp-admin/includes/plugin.php, a file which is surprisingly well documented.

myplugin-step-3

Now that we have the plugin data, we need to loop through each plugin and determine if it is active. WordPress has a function called is_plugin_active() which runs this exact test. Given the full path to the plugin file, it returns either true or false.

Adding a Widget to the Dashboard

We have gathered all the plugin information, filtered out which of those are active and now we want to display this information on the dashboard.

WordPress provides an helper function, wp_add_dashboard_widget(), which takes 3 arguments. The first argument is an identifying string for the widget, so it should be fairly unique and related to your plugin. The second argument is a title to be used in the title bar of the widget. Lastly, you must provide the name of a function which will display the contents of your widget.

In our case, active_plugins is the unique name of our widget, Active Plugins will be the title of our widget and active_plugins_dashboard_widget is the name of the function we will define to display the contents of our widget.

myplugin-step-4

Displaying a Widget

We already have the data we need to display the list of active plugins, so we need to pull it in from the global scope and loop through it.

The active_plugins_dashboard_widget() function will be called each time our widget is displayed on the dashboard. It will be called within the constraints of the widget frame, so use simple markup.

myplugin-step-5

The Result: A Functional Plugin

After only 40 lines of code, we have developed a plugin which grabs all plugin information, determines which plugins are active and displays a list of those active plugins on the dashboard.

result

That’s all! …but what’s next?

I hope you have enjoyed this brief introduction to WordPress plug-in development. It is by no means intended to cover the width and breadth of what is possible with WordPress, but simply as a primer to the horde of documentation found at the WordPress developer’s site.

Please suggest other PHP or JavaScript tutorials you think would be helpful to the UMS crowd and I’ll see what I can do!

Links

WordPress
WordPress Release Archive
WordPress Codex
WordPress Plugin API
WordPress Function Reference
PHP Function Reference

Directories & Files

wp-includes/version.php
wp-admin/includes/plugin.php
wp-content/plugins/

Downloads

myplugin.php

License

Creative Commons License
How to Build a WordPress Plugin by Jason Johnson is licensed under a Creative Commons Attribution 3.0 United States License.
Based on a work at www.unmatchedstyle.com.

Translations

Translations of this article are permitted and full translations will receive forwarding links in-kind, so make sure to link back to the original article. Thank you!

8 Comments

  1. Yustian

    Thanks for this information. Please share more sample about “How to Build a WordPress Plugin?”.

    Reply
  2. Amber Weinberg

    I’ve been looking for an excuse to get into building WordPress sites. I keep meaning to, but all my projects have been large custom CMS’s 😉

    Reply
  3. Daniel

    I find building the plugin the easy bit! It’s getting it into the WordPress plugin SVN and then understanding how that all works which is difficult. I keep tagging new versions of a plugin i’ve made, but it doesn’t seem to effect the actual listing.

    Reply
  4. Jason Johnson

    @Yestian – I was happy to write it and I hope to write more tutorials just like this one.

    @Amber Weinberg – I know those situations very well! Sometimes clients can ask for things which simply don’t fit correctly with WordPress.

    @Daniel – I think this would make a very cool tutorial. Would you be interested in me writing about how to do that?

    Reply
  5. Glenn

    After going through the process of building widgets several times I created a tool to make it a lot easier. You might want to give it a try and let me know if you find it useful. You can find the tool at widgetifyr.com

    Glenn

    Reply
  6. Michelle

    great post, thanks 🙂

    Reply
  7. Garrett Ivory

    Excellent post. I appreciate it a lot.

    Reply
  8. judhisthira Sahoo

    hi,

    I am beginner in WordPress and good knowledge in PHP.Can any one help me to create a plugin which will do two page access.Line in the mail want the list of category with oen button add product.if we click on the button that will redirect tot me the Add product page with category ID where i will access the category name from db and add product information and submit to db.

    any help will greate for me.
    Plz help me.

    Thanks,
    Judhisthira

    Reply

Trackbacks/Pingbacks

  1. Links.I.Love - 2009-03-04 | Static-Romance.Org - [...] How to Build a Wordpress Plugin | Unmatched Style (tags: wordpress) [...]
  2. Daily Links | AndySowards.com :: Professional Web Design, Development, Programming, Hacks, Downloads, Math and being a Web 2.0 Hipster? - [...] How to Build a WordPress Plugin | Unmatched Style Great read if you want to build a WP Plugin…
  3. links for 2009-03-05 | This Inspires Me - [...] How to Build a Wordpress Plugin (tags: wordpress plugins development) [...]
  4. Everything Blog Magazine » Blog Archive » 9 Essential Guides on How to Create Wordpress Plugins - [...] How to Build a Wordpress Plugin Another guide on how to build a Wordpress plugin. Share, Bookmark, and Enjoy:…
  5. A Free wordpress newsletter » 20 Really Handy Tutorials to help you build WordPress Plugins - [...] How to Build a WordPress Plugin » [...]
  6. 30 Useful Tutorials to Create WordPress Plugin | Doublemesh - [...] How to Build a WordPress Plugin [...]
  7. Wordpress Top 160 Tutoriais | Blog do Dinheiro Brazil - [...] 38. Como construir um WordPress Plugin [...]
  8. 30 Useful Tutorials to Create WordPress Plugin - [...] in different ways, include one of the most popular and used jQuery slideshows, Nivo Slider. How to Build a WordPress PluginEvery…
  9. How to install WordPress? | Themes108 - […] Graphics: https://www.fastcomet.com, https://unmatchedstyle.com/, http://networkstatic.net/ […]
  10. â–· How to Create a WordPress Plugin (2022) - TutorielMAN - […] Build a WordPress Plugin […]

Submit a Comment

Your email address will not be published. Required fields are marked *

More News & Articles

The Essential Guide to Getting Started on Freelance Writing

The Essential Guide to Getting Started on Freelance Writing

Explore the lucrative and fulfilling world of freelance writing with our essential guide. Learn about specialties like blogging, social media, article, and technical writing. Build a portfolio, find work, set up your business, and discover the potential earnings. Embrace the freedom of working from home and follow tips for success in your dream career.

Securing Your Website: A DevOps Security Checklist

Securing Your Website: A DevOps Security Checklist

Learn how to secure your website with a comprehensive DevOps checklist. Dive into SSL/TLS encryption, password practices, and more. Discover the power of Content Security Policy and safeguard your online presence effectively.

EMAIL NEWSLETTER