Lonewolf Designs

UK based web design blog of Tim Trott

It is more than likely that your Wordpress Widget will need to have some user configurable settings, so why not include a settings form within your widget?

These settings pages (admin panels, configuration screen and so on…) are accessed from within the Presentation » Widgets screen from Wordpress 2 and from Design » Widgets in Wordpress 2.5. When you add a widget to a sidebar, you may notice a little icon on the right hand side of the widget. Clicking on this will open up the widget admin panel where your users can customize your widget to their needs.

How To Create Widgets with Control Panels
How To Create Widgets with Control Panels

Lets use the code from the Hello World widget of the last tutorial and change it around so that we have a settings page. We will see how to create the settings page, how to store/save and retrieve/load settings using the Wordpress database and how to handle user inputs.

<?php
/*
Plugin Name: Hello World
Plugin URI: http://lonewolf-online.net/
Description: Sample Hello World Plugin
Author: Tim Trott
Version: 1
Author URI: http://lonewolf-online.net/
*/

function sampleHelloWorld()
{
  echo "<h2>Hello World</h2>";
}

function widget_myHelloWorld($args) {
  extract($args);
  echo $before_widget;
  echo $before_title;?>My Widget Title<?php echo $after_title;
  sampleHelloWorld();
  echo $after_widget;
}

function myHelloWorld_init()
{
  register_sidebar_widget(__('Hello World'), 'widget_myHelloWorld');    
}
add_action("plugins_loaded", "myHelloWorld_init");
?>
 

The first thing we are going to create is the icon on the Widget sidebar screen, and get it to open up a blank screen which we will later fill with input controls.

We need to create a function that will be used to display and process the options. The convention is to use the plugin name appended with _control for the control panel page.

function myHelloWorld_control()
{
}

We will come back to this function a bit later on. For now, we will just get Wordpress to use our blank form.

In the _init function where we register the sidebar widget, we need to add another function call that will tell Wordpress that we have a control panel associated with our plugin.

function myHelloWorld_init()
{
  register_sidebar_widget(__('Hello World'), 'widget_myHelloWorld');
  register_widget_control(   'Hello World', 'myHelloWorld_control', 300, 200 );
}
 

This extra function specifies the title of the page, the function that will be called (in this example it does nothing yet) and the widget control panel screen will be 300 pixels wide by 200 pixels tall. You can test this now, or continue and add some content.

Wordpress Options

Before we get started on the admin panel, lets first have a look at how we can use the Wordpress options database to store values. Wordpress has a nice function that will do all the hard work for you called update_option. This function simply takes a key name and the data to store under that key, be it a string, integer or an array. You should try and use a unique, but meaningful, key name to avoid conflicts with other plugins or Wordpress itself. I also use a prefix of "widget_" to identify that the settings are for a widget.

The Wordpress options database is a table called by default wp_options, and maintains a list of key name and value pairs.

update_options("widget_myHelloWorld", "This is a test");
 

This will update the key named widget_myHelloWorld in the Wordpress database and set the value to "This is a test". You can retrieve the information at a later date using the get_option function. This function only takes one parameter – the key name to retrieve.

$title = get_option("widget_myHelloWorld");
echo $title;
 

In this example we would expect to see "This is a test" on the screen.

Constructing our Admin Page

I am going to create the admin panel in four stages in this tutorial, you may wish to merge these all into one, or do them in a different order – its entirely up to you.

1. Create the Form Controls

To begin with you are going to need a form design. In this example we are going to simply use a text box and a label. I'll leave the for design to you!

Each line on the form should be contained within a paragraph block to keep a nice uniform spacing between all elements. By default the items will be centred on the form, so if you need them to be left or right aligned, you will need to specify this in the p tag.

This is the code for my simple html form. You must use unique name and id attributes on the form. You will notice that there is no <form> element in the code. This is because a form element is provided by Wordpress which encompass all the widgets that have been loaded.

function myHelloWorld_control()
{
?>
  <p>
    <label for="myHelloWorld-WidgetTitle">Widget Title: </label>
    <input type="text" id="myHelloWorld-WidgetTitle" name="myHelloWorld-WidgetTitle" value="" />
  </p>
<?php
}
 

If you test now you should have a label and text box centred on the widget control form. It is more than likely that you will need more than one form control, however I will let you work on that now you have a grasp of the basics.

2. Get Existing Data and Default Values

The next stage it to populate the form controls with either default values, or values obtained from the database with the get_options function.

Lets get the data from the database, perform a test on it to see if we have valid data, fill the data with default values if necessary then populate the form controls.

function myHelloWorld_control()
{
  $options = get_option("widget_myHelloWorld");
  if (!is_array( $options ))
{
$options = array(
      'title' => 'My Widget Title'
      );
  }

?>
  <p>
    <label for="myHelloWorld-WidgetTitle">Widget Title: </label>
    <input type="text" id="myHelloWorld-WidgetTitle" name="myHelloWorld-WidgetTitle" value="<?php echo $options['title'];?>" />
  </p>
<?php
}
 

The first new line in this code will get the previously stored values from the database. We then test the output variable to see if it is null (no data was retrieved from the database) and if it is we create a new array with one element for the widget title. This method will guarantee that we have a valid value for the title (or an other setting) from the database or a default value. We can then use the title stored in the array to output into the text box value attribute.

3. Get User Input and Store the New Settings

We need some way of capturing the value a user may type in the box and storing it in the database to be re-used. For this we will need another form element that will identify our data when it is submitted. This new element is a hidden value which we will test against.

function myHelloWorld_control()
{
  $options = get_option("widget_myHelloWorld");
  if (!is_array( $options ))
{
$options = array(
      'title' => 'My Widget Title'
      );
  }    

  if ($_POST['myHelloWorld-Submit'])
  {
    $options['title'] = htmlspecialchars($_POST['myHelloWorld-WidgetTitle']);
    update_option("widget_myHelloWorld", $options);
  }

?>
  <p>
    <label for="myHelloWorld-WidgetTitle">Widget Title: </label>
    <input type="text" id="myHelloWorld-WidgetTitle" name="myHelloWorld-WidgetTitle" value="<?php echo $options['title'];?>" />
    <input type="hidden" id="myHelloWorld-Submit" name="myHelloWorld-Submit" value="1" />
  </p>
<?php
}
 

In this new code segment, we look at the PHP POST variable for an element called myHelloWorld-Submit (the same as the hidden field) and if we found it we extract the widget title from the post variable. It is important to ensure that the code we are about to insert into the database does not contain any malicious code, so we can use the htmlspecialchars function to help prevent SQL injections. We then make a call to update_option to save the new values to the database.

4. Using the Data

What is the point of doing all this and not using the data? None what so ever. Using the data within the widget is just as easy (in fact its the same) as using the data on the form.

In our code that outputs the widget title, you simply need to get the values for the database with get_option, make sure we have valid information and then output the value. We have already seen this in action on the widget control stage, so I will just go straight to the full code listing for this tutorial.

Complete Code

<?php
/*
Plugin Name: Hello World
Plugin URI: http://lonewolf-online.net/
Description: Sample Hello World Plugin
Author: Tim Trott
Version: 2
Author URI: http://lonewolf-online.net/
*/

function sampleHelloWorld()
{
  echo "<h2>Hello World</h2>";
}

function widget_myHelloWorld($args) {
  extract($args);

  $options = get_option("widget_myHelloWorld");
  if (!is_array( $options ))
{
$options = array(
      'title' => 'My Widget Title'
      );
  }      

  echo $before_widget;
    echo $before_title;
      echo $options['title'];
    echo $after_title;

    //Our Widget Content
    sampleHelloWorld();
  echo $after_widget;
}

function myHelloWorld_control()
{
  $options = get_option("widget_myHelloWorld");
  if (!is_array( $options ))
{
$options = array(
      'title' => 'My Widget Title'
      );
  }    

  if ($_POST['myHelloWorld-Submit'])
  {
    $options['title'] = htmlspecialchars($_POST['myHelloWorld-WidgetTitle']);
    update_option("widget_myHelloWorld", $options);
  }

?>
  <p>
    <label for="myHelloWorld-WidgetTitle">Widget Title: </label>
    <input type="text" id="myHelloWorld-WidgetTitle" name="myHelloWorld-WidgetTitle" value="<?php echo $options['title'];?>" />
    <input type="hidden" id="myHelloWorld-Submit" name="myHelloWorld-Submit" value="1" />
  </p>
<?php
}

function myHelloWorld_init()
{
  register_sidebar_widget(__('Hello World'), 'widget_myHelloWorld');
  register_widget_control(   'Hello World', 'myHelloWorld_control', 300, 200 );    
}
add_action("plugins_loaded", "myHelloWorld_init");
?>
 

 

18 Responses to “How To Create Widgets with Control Panels”

  1. Phillip B says:

    Two excellent tutorials!
    Thanks to you I’m already creating and customizing my widgets.

  2. Kawika says:

    Thanks! It’s hard to find documentation on how to create WordPress widgets. This post saved my bacon! Would you consider updating it for the newest version of WordPress?

  3. Jabga says:

    A great tutorial, thanks a lot sharing this with us

  4. Jason Oakley says:

    Hey!
    Thanks for this very helpful tutorial. I looked all over the web for information on adding a Control Panel to my widget and this is the most informative and easy to understand tutorial out there.
    I’ve just plugged your tutorial on my site. I hope more will use it to learn.

    Thanks again.

  5. Gopinathan says:

    i need a help for create my own sidebar and how to display in my theme

  6. Gopinathan says:

    I’ve a problem regarding “How to create my own sidebar and how to post my widget in that” could u help me how to do it,..

  7. Dark Avenger says:

    This is a great article, with the last one, I have finally got my head around making a widget! Thank you for making it easy!

    DA

  8. Mário says:

    That was a very good tutorial! Very well explained. Thanks a lot!

  9. Mike says:

    2 terrific articles. Well done.

    Mike

  10. Racing News Digest says:

    I know I am really late commenting on this article but I wanted to say this is exactly what I was looking for to implement some special widgest in my WPMU install.

    thanks

  11. Steven says:

    Excellent article, typed “how to make a wordpress widget” into google and 5 minutes later here I am with a working widget

    Could you help to add other items into the widget admin?

    I would like to have a drop down menu to allow a variable to be selected and used in the widget so if I had optional items to have included in the widget they could select which option they would like.

  12. psimbiru says:

    you are the best…..thanks

  13. Thomas says:

    Very useful, thank you!

  14. Donkeyboy says:

    Brilliant explanation – cleared up the mysteries of plugins and widgets!

    One slight problem: the first time I add the plugin (using the WP interface), it correctly shows the default title – ‘My Widget Title’. When I change this title to my own, it also updates fine.

    However, when I delete my own title from the widget (still in the WP interface), it doesn’t reset itself back to ‘My Widget Title’. It just leaves it blank.

    I’ve even removed the entry for that plugin in MySQL. When I come to add the plugin again and a new entry is created in MySQL, that field is not showing the default value – its blank, until I edit it myself.

    Am I missing something?

  15. Wes G says:

    Excellent tutorial. It was easy to understand and follow, and allowed me to make a widget very quickly.

    Thanks!

  16. mrmuscle says:

    thanks 4 u articles

  17. Zack Melayu says:

    Your website is one of the best and neat website that I&squot;ve visited. I want to start my own website or blog and would like to have the same basic layout as yours. I appreciate it very much if you could tell me where can i get the template?

  18. Twitter Widget says:

    Thank you for these 2 great articles! I was able to quickly create a Wordpress widget for our Twitter widget using your examples.

 

Pages that link here

  1. noio » Noio Iconized Bookmarks
  2. Wordpress Widget: Most Popular Posts | wesg

Leave a Reply