<?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: The Ultimate Guide to WordPress Conditional Tags</title>
	<atom:link href="http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/</link>
	<description></description>
	<lastBuildDate>Tue, 10 Jan 2012 20:05:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Seth Shoultes</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-16518</link>
		<dc:creator>Seth Shoultes</dc:creator>
		<pubDate>Sat, 22 Jan 2011 21:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-16518</guid>
		<description>If anyone wants to see another example of how to use Leland&#039;s tutorial to fix a Jquery laden theme or a busted plugin.

I posted a real life example of a &lt;a href=&quot;http://eventespresso.com/forums/2011/01/themeforest-jquey-fiasco/&quot; rel=&quot;nofollow&quot;&gt;Themeforest Jquery Fiasco&lt;/a&gt; in my forums.

Hope you will find it as useful as I did.</description>
		<content:encoded><![CDATA[<p>If anyone wants to see another example of how to use Leland&#8217;s tutorial to fix a Jquery laden theme or a busted plugin.</p>
<p>I posted a real life example of a <a href="http://eventespresso.com/forums/2011/01/themeforest-jquey-fiasco/" rel="nofollow">Themeforest Jquery Fiasco</a> in my forums.</p>
<p>Hope you will find it as useful as I did.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clare</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-15555</link>
		<dc:creator>Clare</dc:creator>
		<pubDate>Sun, 12 Sep 2010 07:25:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-15555</guid>
		<description>Thanks for documenting this - I was looking for a way to add some information to my footer that I only wanted to appear on posts not pages. Your code worked a treat!</description>
		<content:encoded><![CDATA[<p>Thanks for documenting this &#8211; I was looking for a way to add some information to my footer that I only wanted to appear on posts not pages. Your code worked a treat!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skip Savage</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-14970</link>
		<dc:creator>Skip Savage</dc:creator>
		<pubDate>Wed, 23 Jun 2010 22:48:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-14970</guid>
		<description>Thanks for the help.

Sorry to report that OR or &#124;&#124; as separators didn&#039;t work for me. 

For anyone else with this question, I found using &amp;&amp; gave me the result I was looking for.

For example,

`is_page(&#039;one&#039;) &amp;&amp; is_category(&#039;two&#039;)`</description>
		<content:encoded><![CDATA[<p>Thanks for the help.</p>
<p>Sorry to report that OR or || as separators didn&#8217;t work for me. </p>
<p>For anyone else with this question, I found using &amp;&amp; gave me the result I was looking for.</p>
<p>For example,</p>
<p>`is_page(&#8216;one&#8217;) &amp;&amp; is_category(&#8216;two&#8217;)`</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leland</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-14961</link>
		<dc:creator>Leland</dc:creator>
		<pubDate>Wed, 23 Jun 2010 13:11:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-14961</guid>
		<description>Try putting an OR or &#124;&#124; as a separator.  AND won&#039;t work since a page cannot be assigned to a category.

&lt;code&gt;is_page(array(’something’,’someone’)) &#124;&#124; is_category(’somewhere’)&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Try putting an OR or || as a separator.  AND won&#8217;t work since a page cannot be assigned to a category.</p>
<p><code>is_page(array(’something’,’someone’)) || is_category(’somewhere’)</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skip Savage</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-14817</link>
		<dc:creator>Skip Savage</dc:creator>
		<pubDate>Fri, 04 Jun 2010 06:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-14817</guid>
		<description>Great reference post you&#039;ve written. Perhaps for the benefit of others with this same question, could you help me figure out how to conditionally tag both pages and a category in a single Widget Logic field?

For example, I have `is_page(array(&#039;something&#039;,&#039;someone&#039;))` and I need to add `is_category(&#039;somewhere&#039;).

But I am stumped.</description>
		<content:encoded><![CDATA[<p>Great reference post you&#8217;ve written. Perhaps for the benefit of others with this same question, could you help me figure out how to conditionally tag both pages and a category in a single Widget Logic field?</p>
<p>For example, I have `is_page(array(&#8216;something&#8217;,'someone&#8217;))` and I need to add `is_category(&#8216;somewhere&#8217;).</p>
<p>But I am stumped.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brow</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-10434</link>
		<dc:creator>Brow</dc:creator>
		<pubDate>Sat, 12 Dec 2009 16:19:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-10434</guid>
		<description>Awesome post!  I was stuck on getting posts to show on JUST ONE category and this helped big time.

Thanks a million!</description>
		<content:encoded><![CDATA[<p>Awesome post!  I was stuck on getting posts to show on JUST ONE category and this helped big time.</p>
<p>Thanks a million!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iamseo</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-8777</link>
		<dc:creator>iamseo</dc:creator>
		<pubDate>Mon, 02 Nov 2009 09:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-8777</guid>
		<description>Wanted to let you know that this is possibly the page I look at most when coding WP themes :)</description>
		<content:encoded><![CDATA[<p>Wanted to let you know that this is possibly the page I look at most when coding WP themes <img src='http://www.themelab.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: violet</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-8496</link>
		<dc:creator>violet</dc:creator>
		<pubDate>Tue, 13 Oct 2009 20:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-8496</guid>
		<description>This was incredibly helpful!  Took me forever to realize what I needed was a conditional tag, but once I did, this solved the problem.  Thanks!</description>
		<content:encoded><![CDATA[<p>This was incredibly helpful!  Took me forever to realize what I needed was a conditional tag, but once I did, this solved the problem.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 5 Useful And Creative Ways To Use WordPress Widgets</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-7530</link>
		<dc:creator>5 Useful And Creative Ways To Use WordPress Widgets</dc:creator>
		<pubDate>Mon, 03 Aug 2009 03:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-7530</guid>
		<description>[...] The Ultimate Guide to WordPress Conditional Tags [...]</description>
		<content:encoded><![CDATA[<p>[...] The Ultimate Guide to WordPress Conditional Tags [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 5 Useful And Creative Ways To Use WordPress Widgets &#124; Kosvo Youth Portal</title>
		<link>http://www.themelab.com/2008/04/14/the-ultimate-guide-to-wordpress-conditional-tags/#comment-7434</link>
		<dc:creator>5 Useful And Creative Ways To Use WordPress Widgets &#124; Kosvo Youth Portal</dc:creator>
		<pubDate>Sun, 26 Jul 2009 11:51:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.themelab.com/?p=214#comment-7434</guid>
		<description>[...] The Ultimate Guide to WordPress Conditional Tags [...]</description>
		<content:encoded><![CDATA[<p>[...] The Ultimate Guide to WordPress Conditional Tags [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

