<?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/"
		>
<channel>
	<title>Comments on: WordPress Plugin Actions</title>
	<atom:link href="http://www.devlounge.net/code/wordpress-plugin-actions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.devlounge.net/code/wordpress-plugin-actions</link>
	<description>Design, Develop, and Grow</description>
	<lastBuildDate>Wed, 08 Feb 2012 09:03:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Essential Wordpress Plugin Development Resources, Tutorials and Guides : Speckyboy Design Magazine</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-181266</link>
		<dc:creator>Essential Wordpress Plugin Development Resources, Tutorials and Guides : Speckyboy Design Magazine</dc:creator>
		<pubDate>Mon, 12 Oct 2009 15:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-181266</guid>
		<description>[...] 3. How to Get Ideas for Wordpress Plugins &#187; 4. Structure of a Wordpress Plugin &#187; 5. WordPress Plugin Actions &#187; 6. WordPress Plugin Filters &#187; 7. Constructing a WordPress Plugin Admin Panel &#187; 8. [...]</description>
		<content:encoded><![CDATA[<p>[...] 3. How to Get Ideas for WordPress Plugins &#187; 4. Structure of a WordPress Plugin &#187; 5. WordPress Plugin Actions &#187; 6. WordPress Plugin Filters &#187; 7. Constructing a WordPress Plugin Admin Panel &#187; 8. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allan Brown</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-180713</link>
		<dc:creator>Allan Brown</dc:creator>
		<pubDate>Sat, 05 Sep 2009 13:21:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-180713</guid>
		<description>Suggestion if you ever update this post:  Add a section for “using shortcodes”. I had a difficult time figuring this out on my own. For those of you who may need help with this:  Look at the shortcode API on codex. Place the “add_shortcode(‘shortcut name’, ‘shortcut function’);” to the same place you put your add_action and add_filter calls:

add_action(&#039;admin_menu&#039;, &#039;DevloungePluginSeries_ap&#039;);
add_action(&#039;wp_head&#039;, array(&amp;$dl_pluginSeries, &#039;addHeaderCode&#039;), 1);
add_action(&#039;activate_devlounge-plugin-series/devlounge-plugin-series.php&#039;,  array(&amp;$dl_pluginSeries, &#039;init&#039;));

//Filters
add_filter(&#039;the_content&#039;, array(&amp;$dl_pluginSeries, &#039;addContent&#039;),1); 
add_filter(&#039;get_comment_author&#039;, array(&amp;$dl_pluginSeries, &#039;authorUpperCase&#039;));

//Shortcodes
add_shortcode(&#039;shortcodename&#039;, array(&amp;$dl_pluginSeries, &#039;function&#039;));</description>
		<content:encoded><![CDATA[<p>Suggestion if you ever update this post:  Add a section for “using shortcodes”. I had a difficult time figuring this out on my own. For those of you who may need help with this:  Look at the shortcode API on codex. Place the “add_shortcode(‘shortcut name’, ‘shortcut function’);” to the same place you put your add_action and add_filter calls:</p>
<p>add_action(&#8216;admin_menu&#8217;, &#8216;DevloungePluginSeries_ap&#8217;);<br />
add_action(&#8216;wp_head&#8217;, array(&amp;$dl_pluginSeries, &#8216;addHeaderCode&#8217;), 1);<br />
add_action(&#8216;activate_devlounge-plugin-series/devlounge-plugin-series.php&#8217;,  array(&amp;$dl_pluginSeries, &#8216;init&#8217;));</p>
<p>//Filters<br />
add_filter(&#8216;the_content&#8217;, array(&amp;$dl_pluginSeries, &#8216;addContent&#8217;),1);<br />
add_filter(&#8216;get_comment_author&#8217;, array(&amp;$dl_pluginSeries, &#8216;authorUpperCase&#8217;));</p>
<p>//Shortcodes<br />
add_shortcode(&#8216;shortcodename&#8217;, array(&amp;$dl_pluginSeries, &#8216;function&#8217;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yogibear</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-180627</link>
		<dc:creator>Yogibear</dc:creator>
		<pubDate>Mon, 31 Aug 2009 18:59:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-180627</guid>
		<description>Hi all,
  Its great that there is someone here to release some helpful information on creating plugins for WordPress.  I got here because i&#039;m learning as well!  I noticed that some had problems executing their scripts.  Anyway, not sure if you had the same problem as me, but my problem was a classic error:

In the second class_exists statement, REMEMBER there is no exclamation.
if ( class_exists(&quot;hunt_order_form&quot;) ) {  

NOT  

if ( !class_exists(&quot;hunt_order_form&quot;) ) {

Since the class should have been created, you are evaluating to see if the class was created.  It was definitely an easy mistake to make if you are like me, typing out the tutorial rather than copy and pasting.

Anyway, not sure if that helped anybody, but hopefully my 1 hour of testing, helped you!</description>
		<content:encoded><![CDATA[<p>Hi all,<br />
  Its great that there is someone here to release some helpful information on creating plugins for WordPress.  I got here because i&#8217;m learning as well!  I noticed that some had problems executing their scripts.  Anyway, not sure if you had the same problem as me, but my problem was a classic error:</p>
<p>In the second class_exists statement, REMEMBER there is no exclamation.<br />
if ( class_exists(&#8220;hunt_order_form&#8221;) ) {  </p>
<p>NOT  </p>
<p>if ( !class_exists(&#8220;hunt_order_form&#8221;) ) {</p>
<p>Since the class should have been created, you are evaluating to see if the class was created.  It was definitely an easy mistake to make if you are like me, typing out the tutorial rather than copy and pasting.</p>
<p>Anyway, not sure if that helped anybody, but hopefully my 1 hour of testing, helped you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-180113</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sat, 25 Jul 2009 12:31:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-180113</guid>
		<description>I appreciate your effort and the quality of the information you provide. I certainly will folow these recommendations!</description>
		<content:encoded><![CDATA[<p>I appreciate your effort and the quality of the information you provide. I certainly will folow these recommendations!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Baker</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-180032</link>
		<dc:creator>Rob Baker</dc:creator>
		<pubDate>Thu, 16 Jul 2009 19:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-180032</guid>
		<description>How would I use a wordpress shortcode to display addHeaderCode() ?

Thanks?

Pete</description>
		<content:encoded><![CDATA[<p>How would I use a wordpress shortcode to display addHeaderCode() ?</p>
<p>Thanks?</p>
<p>Pete</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Plugin Actions Devlounge &#124; Wood TV Stand</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-179388</link>
		<dc:creator>WordPress Plugin Actions Devlounge &#124; Wood TV Stand</dc:creator>
		<pubDate>Sun, 31 May 2009 23:39:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-179388</guid>
		<description>[...] WordPress Plugin Actions Devlounge   Posted by root 2 hours 13 minutes ago (http://www.devlounge.net)        Wordpress actions allow you as a plugin author to be able to hook into the wordpress while defining the structure of a wordpress plugin i left a place holder for some actions if the devlounge plugin series plugin is activated the comment of quot devlounge        Discuss&#160;  &#124;&#160; Bury &#124;&#160;    News &#124; WordPress Plugin Actions Devlounge [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress Plugin Actions Devlounge   Posted by root 2 hours 13 minutes ago (<a href="http://www.devlounge.net" rel="nofollow">http://www.devlounge.net</a>)        WordPress actions allow you as a plugin author to be able to hook into the wordpress while defining the structure of a wordpress plugin i left a place holder for some actions if the devlounge plugin series plugin is activated the comment of quot devlounge        Discuss&nbsp;  |&nbsp; Bury |&nbsp;    News | WordPress Plugin Actions Devlounge [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joy</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-179293</link>
		<dc:creator>Joy</dc:creator>
		<pubDate>Sun, 24 May 2009 09:53:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-179293</guid>
		<description>This appears to be a timing issue.  How is wp_head() ever called before a plugin is loaded?  According to the call stack, wp_head() has long been executed &amp; written before the web engine gets around to loading up the plugins.  So this coding method doesn&#039;t appear to be a way to add css file link to a header.  How do you add a plugin&#039;s css file to the main WP header?</description>
		<content:encoded><![CDATA[<p>This appears to be a timing issue.  How is wp_head() ever called before a plugin is loaded?  According to the call stack, wp_head() has long been executed &amp; written before the web engine gets around to loading up the plugins.  So this coding method doesn&#8217;t appear to be a way to add css file link to a header.  How do you add a plugin&#8217;s css file to the main WP header?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joy</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-179292</link>
		<dc:creator>Joy</dc:creator>
		<pubDate>Sun, 24 May 2009 09:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-179292</guid>
		<description>What gives?  This will not work for me.  I&#039;m running Wp v.2.6.1  I&#039;ve got a call to wp_head() in my theme&#039;s header file, but no matter what I do, it does not add it into the header.   Tearing my hair out....</description>
		<content:encoded><![CDATA[<p>What gives?  This will not work for me.  I&#8217;m running Wp v.2.6.1  I&#8217;ve got a call to wp_head() in my theme&#8217;s header file, but no matter what I do, it does not add it into the header.   Tearing my hair out&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kwatog Tech &#187; Tutorial for WordPress Plugin Writing</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-178972</link>
		<dc:creator>Kwatog Tech &#187; Tutorial for WordPress Plugin Writing</dc:creator>
		<pubDate>Sat, 18 Apr 2009 07:18:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-178972</guid>
		<description>[...] WordPress Plugin Actions [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress Plugin Actions [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-176223</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Sat, 20 Sep 2008 01:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-176223</guid>
		<description>http://vofece9264.justfree.com/and9597.html and
http://vofece9264.justfree.com/of5131.html of
http://vutura9431.justfree.com/of8492.html of
http://mafyve2798.justfree.com/and6032.html and</description>
		<content:encoded><![CDATA[<p><a href="http://vofece9264.justfree.com/and9597.html" rel="nofollow">http://vofece9264.justfree.com/and9597.html</a> and<br />
<a href="http://vofece9264.justfree.com/of5131.html" rel="nofollow">http://vofece9264.justfree.com/of5131.html</a> of<br />
<a href="http://vutura9431.justfree.com/of8492.html" rel="nofollow">http://vutura9431.justfree.com/of8492.html</a> of<br />
<a href="http://mafyve2798.justfree.com/and6032.html" rel="nofollow">http://mafyve2798.justfree.com/and6032.html</a> and</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 插件开发全攻略（目录） 于 Becomin' Charles</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-170732</link>
		<dc:creator>插件开发全攻略（目录） 于 Becomin' Charles</dc:creator>
		<pubDate>Sun, 06 Jul 2008 03:34:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-170732</guid>
		<description>[...] WordPress Plugin Actions [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress Plugin Actions [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Epic Alex</title>
		<link>http://www.devlounge.net/code/wordpress-plugin-actions/comment-page-1#comment-146590</link>
		<dc:creator>Epic Alex</dc:creator>
		<pubDate>Tue, 10 Jun 2008 11:11:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/articles/wordpress-plugin-actions#comment-146590</guid>
		<description>Hey, thanks for this series, this is the second time that I&#039;ve referred to it to help me write a plugin. I have come across a problem though. I have a function that test is_single and also if  a value in my array is equal to true. This function then hooks into wp_head. However it doesn&#039;t work. I think I might need to make my option variable global, to be able to use it like this? Can you point me in the right direction?

Thanks</description>
		<content:encoded><![CDATA[<p>Hey, thanks for this series, this is the second time that I&#8217;ve referred to it to help me write a plugin. I have come across a problem though. I have a function that test is_single and also if  a value in my array is equal to true. This function then hooks into wp_head. However it doesn&#8217;t work. I think I might need to make my option variable global, to be able to use it like this? Can you point me in the right direction?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

