<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" 
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: WordPress Settings API Tutorial</title>
	<atom:link href="http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/</link>
	<description>Random meanderings you&#039;re probably not interested in</description>
	<lastBuildDate>Thu, 11 Mar 2010 06:10:23 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Keith</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7850</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Sun, 07 Mar 2010 15:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7850</guid>
		<description>Great tutorial, However is there a way to add default settings? If you use one database entry for all settings im assuming this would be done in an array?</description>
		<content:encoded><![CDATA[<p>Great tutorial, However is there a way to add default settings? If you use one database entry for all settings im assuming this would be done in an array?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7840</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Fri, 05 Mar 2010 14:50:54 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7840</guid>
		<description>Normally, I don&#039;t have multiple &quot;submit&quot; buttons. If you want to have them and detect them, then you have to make them return individual bits that will identify their characteristics. 

Note that my submit button in plugin_options_page() has no &quot;name&quot; on it. This is because I don&#039;t care about it. Buttons without names submit no extra parameters, they just submit. But, give it a name, and it returns the value on it. 

There&#039;s two ways to do this.
1. Unique values
2. Unique names

The first way would look like this:
input type=&quot;submit&quot; name=&quot;plugin_options[submit]&quot; value=&quot;Submit&quot;
input type=&quot;submit&quot; name=&quot;plugin_options[submit]&quot; value=&quot;Reset&quot;

In this case, my validation function would get back an $input[&#039;submit&#039;] which would be set to either &quot;Submit&quot; or &quot;Reset&quot;, depending on which button I clicked. You could take action appropriately. Note that you would probably not want to set $newinput[&#039;submit&#039;] to return from this function, unless you wanted to store that value in the database for some strange reason...

Problem with this is that the &quot;value&quot; is what is actually displayed on the page. If you translate that into another language, your code now has to look for that value. It&#039;s problematic.

Second way:
input type=&quot;submit&quot; name=&quot;plugin_options[submit]&quot; value=&quot;Submit&quot;
input type=&quot;submit&quot; name=&quot;plugin_options[reset]&quot; value=&quot;Reset&quot;

In this case, I will get either $input[&#039;submit&#039;] or $input[&#039;reset&#039;] back. Because only one will come back depending on what button is pressed, I can ignore the value and take action based on which one is set. Similarly, I&#039;d want to not put this resulting value in $newinput, same as before.</description>
		<content:encoded><![CDATA[<p>Normally, I don&#8217;t have multiple &#8220;submit&#8221; buttons. If you want to have them and detect them, then you have to make them return individual bits that will identify their characteristics. </p>
<p>Note that my submit button in plugin_options_page() has no &#8220;name&#8221; on it. This is because I don&#8217;t care about it. Buttons without names submit no extra parameters, they just submit. But, give it a name, and it returns the value on it. </p>
<p>There&#8217;s two ways to do this.<br />
1. Unique values<br />
2. Unique names</p>
<p>The first way would look like this:<br />
input type=&#8221;submit&#8221; name=&#8221;plugin_options[submit]&#8221; value=&#8221;Submit&#8221;<br />
input type=&#8221;submit&#8221; name=&#8221;plugin_options[submit]&#8221; value=&#8221;Reset&#8221;</p>
<p>In this case, my validation function would get back an $input['submit'] which would be set to either &#8220;Submit&#8221; or &#8220;Reset&#8221;, depending on which button I clicked. You could take action appropriately. Note that you would probably not want to set $newinput['submit'] to return from this function, unless you wanted to store that value in the database for some strange reason&#8230;</p>
<p>Problem with this is that the &#8220;value&#8221; is what is actually displayed on the page. If you translate that into another language, your code now has to look for that value. It&#8217;s problematic.</p>
<p>Second way:<br />
input type=&#8221;submit&#8221; name=&#8221;plugin_options[submit]&#8221; value=&#8221;Submit&#8221;<br />
input type=&#8221;submit&#8221; name=&#8221;plugin_options[reset]&#8221; value=&#8221;Reset&#8221;</p>
<p>In this case, I will get either $input['submit'] or $input['reset'] back. Because only one will come back depending on what button is pressed, I can ignore the value and take action based on which one is set. Similarly, I&#8217;d want to not put this resulting value in $newinput, same as before.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7839</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 05 Mar 2010 14:41:51 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7839</guid>
		<description>That is where I&#039;m stuck too - there seems to be no way of determining which button (if you add a reset button) has been pressed</description>
		<content:encoded><![CDATA[<p>That is where I&#8217;m stuck too &#8211; there seems to be no way of determining which button (if you add a reset button) has been pressed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto on WordPress &#187; Blog Archive &#187; WordPress Settings API Tutorial</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7832</link>
		<dc:creator>Otto on WordPress &#187; Blog Archive &#187; WordPress Settings API Tutorial</dc:creator>
		<pubDate>Thu, 04 Mar 2010 22:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7832</guid>
		<description>[...] WordPress Settings API Tutorial March 4, 2010, 4:25 pm   Originally posted here: http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/ [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress Settings API Tutorial March 4, 2010, 4:25 pm   Originally posted here: <a href="http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/" rel="nofollow">http://ottodestruct.com/blog/2.....-tutorial/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: My plugin removed from WP.org extend directory - Page 9 - WordPress Tavern Forum</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7575</link>
		<dc:creator>My plugin removed from WP.org extend directory - Page 9 - WordPress Tavern Forum</dc:creator>
		<pubDate>Thu, 11 Feb 2010 18:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7575</guid>
		<description>[...] the output sanitisation?    I prefer to do my validation of data on entry. I talk about this on my Settings API Tutorial, but basically I try not to save anything to the database that is untrusted.  I don&#039;t bother to [...]</description>
		<content:encoded><![CDATA[<p>[...] the output sanitisation?    I prefer to do my validation of data on entry. I talk about this on my Settings API Tutorial, but basically I try not to save anything to the database that is untrusted.  I don&#39;t bother to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jani</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7468</link>
		<dc:creator>Jani</dc:creator>
		<pubDate>Fri, 05 Feb 2010 14:50:54 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7468</guid>
		<description>Thanks for taking the time to respond, Otto. I&#039;ll need to take another look at the code armed with the tips you gave.

Funnily, I just installed SFC today, and realized only afterwards the author links led me back to this blog. :)</description>
		<content:encoded><![CDATA[<p>Thanks for taking the time to respond, Otto. I&#8217;ll need to take another look at the code armed with the tips you gave.</p>
<p>Funnily, I just installed SFC today, and realized only afterwards the author links led me back to this blog. <img src='http://ottodestruct.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7467</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Fri, 05 Feb 2010 14:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7467</guid>
		<description>I don&#039;t know what to tell you. I use this same technique in my Simple Facebook Connect plugin, and it works. I wrote this tutorial using things I learned from creating that plugin.

Check your register_setting call. That call basically turns on the setting, so that it can get whitelisted.

Also check your validation function. That function has to return the modified input, if you don&#039;t return anything, then the variables get lost and nothing gets saved.

Take a look at my &lt;a href=&quot;http://wordpress.org/extend/plugins/simple-facebook-connect/&quot; rel=&quot;nofollow&quot;&gt;SFC&lt;/a&gt; plugin. The base sfc.php file implements this, and you might see what you&#039;re missing. Note that it doesn&#039;t use any &quot;update_option&quot; calls anywhere.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know what to tell you. I use this same technique in my Simple Facebook Connect plugin, and it works. I wrote this tutorial using things I learned from creating that plugin.</p>
<p>Check your register_setting call. That call basically turns on the setting, so that it can get whitelisted.</p>
<p>Also check your validation function. That function has to return the modified input, if you don&#8217;t return anything, then the variables get lost and nothing gets saved.</p>
<p>Take a look at my <a href="http://wordpress.org/extend/plugins/simple-facebook-connect/" rel="nofollow">SFC</a> plugin. The base sfc.php file implements this, and you might see what you&#8217;re missing. Note that it doesn&#8217;t use any &#8220;update_option&#8221; calls anywhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jani</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7465</link>
		<dc:creator>Jani</dc:creator>
		<pubDate>Fri, 05 Feb 2010 08:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7465</guid>
		<description>I&#039;m stumped. After failing to implement this into my own plugin, I took all the bits above and combined them into a fake plugin to see which part makes the difference. Turns out that plugin doesn&#039;t work either. By &quot;doesn&#039;t work&quot; I mean it does generate the custom settings page (as did my own plugin), and the input elements are functional, but the setting (the string) never gets saved. Tried this in WP 2.9.1 and 3.0-alpha, no difference. Is there something missing from the code above, or am I missing something? I&#039;m tempted to add some update_option()&#039;s, but I thought the whole point was, as you point out, that &quot;the options are automatically saved for you&quot;.</description>
		<content:encoded><![CDATA[<p>I&#8217;m stumped. After failing to implement this into my own plugin, I took all the bits above and combined them into a fake plugin to see which part makes the difference. Turns out that plugin doesn&#8217;t work either. By &#8220;doesn&#8217;t work&#8221; I mean it does generate the custom settings page (as did my own plugin), and the input elements are functional, but the setting (the string) never gets saved. Tried this in WP 2.9.1 and 3.0-alpha, no difference. Is there something missing from the code above, or am I missing something? I&#8217;m tempted to add some update_option()&#8217;s, but I thought the whole point was, as you point out, that &#8220;the options are automatically saved for you&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordCast 75: WordPress 2.9 and Beyond &#124; WordCast - Blogging news, WordPress help, WordPress plugins, WordPress themes, WordPress news</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7236</link>
		<dc:creator>WordCast 75: WordPress 2.9 and Beyond &#124; WordCast - Blogging news, WordPress help, WordPress plugins, WordPress themes, WordPress news</dc:creator>
		<pubDate>Mon, 11 Jan 2010 07:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7236</guid>
		<description>[...] Otto of OttoDestruct offers a WordPress Settings API Tutorial based upon the WordPress Settings API to help users understand better how the API works, with some great tips, too. [...]</description>
		<content:encoded><![CDATA[<p>[...] Otto of OttoDestruct offers a WordPress Settings API Tutorial based upon the WordPress Settings API to help users understand better how the API works, with some great tips, too. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thijs</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7190</link>
		<dc:creator>Thijs</dc:creator>
		<pubDate>Thu, 31 Dec 2009 11:30:23 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7190</guid>
		<description>Really nice tutorial, thanks!

Would you know of a way to detect which submit button is clicked when multiple ones are provided (e.g. to provide a reset option)? It seems like the form gets redirected following the submit, so I cannot capture the name of the reset button and hook options reset functionality into this.</description>
		<content:encoded><![CDATA[<p>Really nice tutorial, thanks!</p>
<p>Would you know of a way to detect which submit button is clicked when multiple ones are provided (e.g. to provide a reset option)? It seems like the form gets redirected following the submit, so I cannot capture the name of the reset button and hook options reset functionality into this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7104</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Thu, 17 Dec 2009 14:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7104</guid>
		<description>Yeah, I tend to use this code for my plugins, as well as sticking a class=&quot;button-primary&quot; on the submit input field as well.

However, I left that stuff out specifically to make the code easy to understand. I was mainly focused on how the code works, not how to do admin like styling and such.</description>
		<content:encoded><![CDATA[<p>Yeah, I tend to use this code for my plugins, as well as sticking a class=&#8221;button-primary&#8221; on the submit input field as well.</p>
<p>However, I left that stuff out specifically to make the code easy to understand. I was mainly focused on how the code works, not how to do admin like styling and such.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeremy clarke</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7099</link>
		<dc:creator>jeremy clarke</dc:creator>
		<pubDate>Wed, 16 Dec 2009 22:52:23 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7099</guid>
		<description>oh fooey! That shouldn&#039;t have happened, the second bit of code should have had &lt;p class=&quot;submit&quot;&lt; wrapped around it, which makes the pretty button. In case this one gets garbled too here&#039;s a paste of what I mean: http://pastie.org/746414</description>
		<content:encoded><![CDATA[<p>oh fooey! That shouldn&#8217;t have happened, the second bit of code should have had &lt;p class=&#8221;submit&#8221;&lt; wrapped around it, which makes the pretty button. In case this one gets garbled too here&#8217;s a paste of what I mean: <a href="http://pastie.org/746414" rel="nofollow">http://pastie.org/746414</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeremy clarke</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7098</link>
		<dc:creator>jeremy clarke</dc:creator>
		<pubDate>Wed, 16 Dec 2009 22:45:54 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7098</guid>
		<description>I was embarassed to discover, after reading the Codex doc and agreeing with your assessment, that I was the person who wrote most (or all) of it. I remember just wanting to get something up there because there was no info at all, so I wrote about the things I had cobbled together (which at the time didn&#039;t include adding a whole page). 

One thing about this great tutorial that could be greater is the submit buttons. The code you posted makes some weird plain looking ones, if instead of :

&lt;code&gt;&lt;input name=&quot;Submit&quot; type=&quot;submit&quot; value=&quot;&quot; /&gt;&lt;/code&gt;

You use: 
&lt;code&gt;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;&quot; /&gt;&lt;/code&gt;

Then they look like other pretty buttons in the admin. 

Either way thanks for documenting this. Some day maybe I&#039;ll convert all your info into a Codex doc (or just add phpdoc to the actual functions :S )</description>
		<content:encoded><![CDATA[<p>I was embarassed to discover, after reading the Codex doc and agreeing with your assessment, that I was the person who wrote most (or all) of it. I remember just wanting to get something up there because there was no info at all, so I wrote about the things I had cobbled together (which at the time didn&#8217;t include adding a whole page). </p>
<p>One thing about this great tutorial that could be greater is the submit buttons. The code you posted makes some weird plain looking ones, if instead of :</p>
<p><code>&lt;input name=&quot;Submit&quot; type=&quot;submit&quot; value=&quot;" /&gt;</code></p>
<p>You use:<br />
<code>&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;" /&gt;</code></p>
<p>Then they look like other pretty buttons in the admin. </p>
<p>Either way thanks for documenting this. Some day maybe I&#8217;ll convert all your info into a Codex doc (or just add phpdoc to the actual functions :S )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ade</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7093</link>
		<dc:creator>Ade</dc:creator>
		<pubDate>Tue, 15 Dec 2009 19:19:55 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7093</guid>
		<description>Great tutorial, Otto. Thanks!</description>
		<content:encoded><![CDATA[<p>Great tutorial, Otto. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress and phone home - Page 10 - WordPress Tavern Forum</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7078</link>
		<dc:creator>WordPress and phone home - Page 10 - WordPress Tavern Forum</dc:creator>
		<pubDate>Thu, 10 Dec 2009 22:21:37 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7078</guid>
		<description>[...] URL in the user agent.  Settings sections are more complex, but easy once you know how. I wrote a tutorial on the topic, in fact.   Plagiarizing from my own work a bit:  PHP Code:    [...]</description>
		<content:encoded><![CDATA[<p>[...] URL in the user agent.  Settings sections are more complex, but easy once you know how. I wrote a tutorial on the topic, in fact.   Plagiarizing from my own work a bit:  PHP Code:    [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Writing my own plugin - WordPress Tavern Forum</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7046</link>
		<dc:creator>Writing my own plugin - WordPress Tavern Forum</dc:creator>
		<pubDate>Wed, 02 Dec 2009 17:57:58 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7046</guid>
		<description>[...] wrote a tutorial that should help somewhat, but it&#039;s a bit advanced, not necessarily for beginners: http://ottodestruct.com/blog/2009/wo...-api-tutorial/   However, it is pretty much plug and play code I&#039;m describing there, simply putting very similar [...]</description>
		<content:encoded><![CDATA[<p>[...] wrote a tutorial that should help somewhat, but it&#39;s a bit advanced, not necessarily for beginners: <a href="http://ottodestruct.com/blog/2009/wo...-api-tutorial/" rel="nofollow">http://ottodestruct.com/blog/2.....-tutorial/</a>   However, it is pretty much plug and play code I&#39;m describing there, simply putting very similar [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordCast 75: WordPress 2.9 and Beyond &#124; WordCast - The #1 WordPress Podcast, with WordPress News, WordPress Tips, WordPress Plugins, WordPress Themes, Blogging News, Blogging Tips, and more! &#124; Bitwire Media</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7044</link>
		<dc:creator>WordCast 75: WordPress 2.9 and Beyond &#124; WordCast - The #1 WordPress Podcast, with WordPress News, WordPress Tips, WordPress Plugins, WordPress Themes, Blogging News, Blogging Tips, and more! &#124; Bitwire Media</dc:creator>
		<pubDate>Tue, 01 Dec 2009 03:58:18 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7044</guid>
		<description>[...] Otto of OttoDestruct offers a WordPress Settings API Tutorial based upon the WordPress Settings API to help users understand better how the API works, with some great tips, too. [...]</description>
		<content:encoded><![CDATA[<p>[...] Otto of OttoDestruct offers a WordPress Settings API Tutorial based upon the WordPress Settings API to help users understand better how the API works, with some great tips, too. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vodpod Embedder Version 0.2 released &#124; 1080d</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7030</link>
		<dc:creator>Vodpod Embedder Version 0.2 released &#124; 1080d</dc:creator>
		<pubDate>Tue, 24 Nov 2009 16:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7030</guid>
		<description>[...] API properly. It was quite painful to figure out but now I have a good model for future use. This tutorial explained some concepts but was a little hard to [...]</description>
		<content:encoded><![CDATA[<p>[...] API properly. It was quite painful to figure out but now I have a good model for future use. This tutorial explained some concepts but was a little hard to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Making an options page for Wordpress Plugin &#124; Technixa</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-7023</link>
		<dc:creator>Making an options page for Wordpress Plugin &#124; Technixa</dc:creator>
		<pubDate>Mon, 23 Nov 2009 00:54:43 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-7023</guid>
		<description>[...] Plugins Options in WordPress 2.8 with register_setting(), another similar method can be found at WordPress Settings API Tutorial which handles the input fields in a different [...]</description>
		<content:encoded><![CDATA[<p>[...] Plugins Options in WordPress 2.8 with register_setting(), another similar method can be found at WordPress Settings API Tutorial which handles the input fields in a different [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Kovalenko</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-6998</link>
		<dc:creator>Chris Kovalenko</dc:creator>
		<pubDate>Sat, 14 Nov 2009 15:44:08 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-6998</guid>
		<description>testing :) good tut though</description>
		<content:encoded><![CDATA[<p>testing <img src='http://ottodestruct.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  good tut though</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Billy Bob</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-6970</link>
		<dc:creator>Billy Bob</dc:creator>
		<pubDate>Fri, 06 Nov 2009 17:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-6970</guid>
		<description>Test Comment</description>
		<content:encoded><![CDATA[<p>Test Comment</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny</title>
		<link>http://ottodestruct.com/blog/2009/wordpress-settings-api-tutorial/comment-page-1/#comment-6965</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Thu, 05 Nov 2009 23:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://ottodestruct.com/blog/?p=583#comment-6965</guid>
		<description>Thanks! Was looking all over for some decent examples and this helped... ;)</description>
		<content:encoded><![CDATA[<p>Thanks! Was looking all over for some decent examples and this helped&#8230; <img src='http://ottodestruct.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
