<?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 2.3 Incompatible Plugins and Additional Tips</title>
	<atom:link href="http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/</link>
	<description>Dreaming of bigger, brighter things.</description>
	<lastBuildDate>Wed, 10 Mar 2010 19:47:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joh</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-4617</link>
		<dc:creator>Joh</dc:creator>
		<pubDate>Tue, 11 Dec 2007 05:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-4617</guid>
		<description>I&#039;m using &#039;Just Another Wordpress Plugin&#039; to add meta tags to my existing v2.2 WP blog.  I want to use a new theme that is only compatible with v2.3.  What do I need to do to preserve my existing tags knowing that my JAWP plugin is incompatible with v2.3?  Do I lose all my tags?</description>
		<content:encoded><![CDATA[<p>I&#8217;m using &#8216;Just Another Wordpress Plugin&#8217; to add meta tags to my existing v2.2 WP blog.  I want to use a new theme that is only compatible with v2.3.  What do I need to do to preserve my existing tags knowing that my JAWP plugin is incompatible with v2.3?  Do I lose all my tags?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kitap</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-4555</link>
		<dc:creator>Kitap</dc:creator>
		<pubDate>Wed, 05 Dec 2007 20:40:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-4555</guid>
		<description>Jon, you’re such a hardcore WordPress blogger. :happy: I’m still wondering when I’m going to make that comeback to blogging with my own domain again… From the looks of it, I’ll be asking for your help with WP when I’m back, if that’s okay with you.</description>
		<content:encoded><![CDATA[<p>Jon, you’re such a hardcore WordPress blogger. :happy: I’m still wondering when I’m going to make that comeback to blogging with my own domain again… From the looks of it, I’ll be asking for your help with WP when I’m back, if that’s okay with you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joni</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-3458</link>
		<dc:creator>Joni</dc:creator>
		<pubDate>Tue, 23 Oct 2007 05:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-3458</guid>
		<description>Hi Ray,

Are you referring to the conditional tag or the php tagging feature of 2.3?

If it&#039;s the conditional tag, you need to edit your theme under the Presentation tab, and wrap your plugins with the &quot;If-endif&quot; conditional tags. 

Example:

    &lt; ?php if (function_exists(&#039;the_views&#039;)) { ?&gt;
    &lt; ?php the_views(); ?&gt;
    &lt; ?php } ?&gt;

---&gt; This code is found in my index.php and single.php. I had to edit both files and wrap my &lt; ?php the_views(); ?&gt; plugin with the conditional tags, so that if I disable my plugin in my dashboard (which means that the function no longer exists), the plugin php tag will not cause an error. 

Most plugin authors already include the conditional tags when giving out instructions on how to use their plugins, so there&#039;s a possibility that all your plugins are already safe and you really don&#039;t need to do this. You can double-check, though. :)

Btw, this isn&#039;t applicable to sidebar widgets.</description>
		<content:encoded><![CDATA[<p>Hi Ray,</p>
<p>Are you referring to the conditional tag or the php tagging feature of 2.3?</p>
<p>If it&#8217;s the conditional tag, you need to edit your theme under the Presentation tab, and wrap your plugins with the &#8220;If-endif&#8221; conditional tags. </p>
<p>Example:</p>
<p>    < ?php if (function_exists('the_views')) { ?><br />
    < ?php the_views(); ?><br />
    < ?php } ?></p>
<p>&#8212;> This code is found in my index.php and single.php. I had to edit both files and wrap my < ?php the_views(); ?> plugin with the conditional tags, so that if I disable my plugin in my dashboard (which means that the function no longer exists), the plugin php tag will not cause an error. </p>
<p>Most plugin authors already include the conditional tags when giving out instructions on how to use their plugins, so there&#8217;s a possibility that all your plugins are already safe and you really don&#8217;t need to do this. You can double-check, though. :)</p>
<p>Btw, this isn&#8217;t applicable to sidebar widgets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-3457</link>
		<dc:creator>Ray</dc:creator>
		<pubDate>Tue, 23 Oct 2007 04:28:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-3457</guid>
		<description>Where does the php plugin command go? Do I get to it using &quot;edit&quot; on the plugin tab for the individual plugins? Or is it somewhere in the theme editor under the Presentation tab? Can you give an example using the default Kubrick theme just to show where to insert the php plugin command?

Thanks.</description>
		<content:encoded><![CDATA[<p>Where does the php plugin command go? Do I get to it using &#8220;edit&#8221; on the plugin tab for the individual plugins? Or is it somewhere in the theme editor under the Presentation tab? Can you give an example using the default Kubrick theme just to show where to insert the php plugin command?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinoy Blogosphere Weekend Recap (10/14/07) &#124; PinoyBlogero.com</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-3281</link>
		<dc:creator>Pinoy Blogosphere Weekend Recap (10/14/07) &#124; PinoyBlogero.com</dc:creator>
		<pubDate>Sun, 14 Oct 2007 06:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-3281</guid>
		<description>[...] Having problems with your newly updated Wordpress 2.3 blog? Joni from Tainted Song lists down a number of incompatible plugins and gives out additional tips for upgrading to Wordpress 2.3 which can be found here. [...]</description>
		<content:encoded><![CDATA[<p>[...] Having problems with your newly updated Wordpress 2.3 blog? Joni from Tainted Song lists down a number of incompatible plugins and gives out additional tips for upgrading to Wordpress 2.3 which can be found here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weekend Roundup #6 &#187; Blogging News &#38; Reviews // JaypeeOnline</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-3259</link>
		<dc:creator>Weekend Roundup #6 &#187; Blogging News &#38; Reviews // JaypeeOnline</dc:creator>
		<pubDate>Fri, 12 Oct 2007 22:36:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-3259</guid>
		<description>[...] upgraded to WordPress 2.3 yet? Check out these incompatible plugins and additional tips from my friend [...]</description>
		<content:encoded><![CDATA[<p>[...] upgraded to WordPress 2.3 yet? Check out these incompatible plugins and additional tips from my friend [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaypee</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-3208</link>
		<dc:creator>Jaypee</dc:creator>
		<pubDate>Thu, 11 Oct 2007 05:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-3208</guid>
		<description>Still haven&#039;t updated my blog to WP 2.3. First I was waiting for plugins to be updated by the authors and when the plugins were updated, I still didn&#039;t have time to do it because I  was very busy when my parents came to visit us from the Philippines. I&#039;ll try to do the upgrade within this week, if not then probably next week. Hehe :D
Btw, thanks for the tips. I&#039;ll keep them in mind when I do the upgrade. :)</description>
		<content:encoded><![CDATA[<p>Still haven&#8217;t updated my blog to WP 2.3. First I was waiting for plugins to be updated by the authors and when the plugins were updated, I still didn&#8217;t have time to do it because I  was very busy when my parents came to visit us from the Philippines. I&#8217;ll try to do the upgrade within this week, if not then probably next week. Hehe :D<br />
Btw, thanks for the tips. I&#8217;ll keep them in mind when I do the upgrade. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fruityoaty</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-3057</link>
		<dc:creator>fruityoaty</dc:creator>
		<pubDate>Fri, 05 Oct 2007 01:26:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-3057</guid>
		<description>I&#039;m a software tester / quality assurance analyst by trade, so I&#039;ve had my fair share of testing buggy software and dealing with the consequences of incompatibility.

I tested WordPress 2.3 upgrade on my &quot;test domain site&quot; (sort of a mirror of my blogsite)... and there were a lot of plugin breaks.

I&#039;m still recuperating from my headaches.</description>
		<content:encoded><![CDATA[<p>I&#8217;m a software tester / quality assurance analyst by trade, so I&#8217;ve had my fair share of testing buggy software and dealing with the consequences of incompatibility.</p>
<p>I tested WordPress 2.3 upgrade on my &#8220;test domain site&#8221; (sort of a mirror of my blogsite)&#8230; and there were a lot of plugin breaks.</p>
<p>I&#8217;m still recuperating from my headaches.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PiNoYBLuRKeR@PinoyBlogoSphere.net &#187; Blog Archive &#187; links for 2007-10-02</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-2995</link>
		<dc:creator>PiNoYBLuRKeR@PinoyBlogoSphere.net &#187; Blog Archive &#187; links for 2007-10-02</dc:creator>
		<pubDate>Tue, 02 Oct 2007 15:25:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-2995</guid>
		<description>[...] WordPress 2.3 Incompatible Plugins and Additional Tips &#124; taintedsong v9 [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress 2.3 Incompatible Plugins and Additional Tips | taintedsong v9 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2007-10-02 &#171; PinoyBlogoSphere.com &#124; PhilippineBlogoSphere.com</title>
		<link>http://taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/comment-page-1/#comment-2994</link>
		<dc:creator>links for 2007-10-02 &#171; PinoyBlogoSphere.com &#124; PhilippineBlogoSphere.com</dc:creator>
		<pubDate>Tue, 02 Oct 2007 15:23:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.taintedsong.com/2007/09/29/wordpress-23-incompatible-plugins-and-additional-tips/#comment-2994</guid>
		<description>[...] WordPress 2.3 Incompatible Plugins and Additional Tips &#124; taintedsong v9 [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress 2.3 Incompatible Plugins and Additional Tips | taintedsong v9 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
