<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: WordPress - modified, dependent and extra Loops</title>
	<link>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/</link>
	<description>WordPress, Themes, Blogging, Web development</description>
	<pubDate>Thu, 24 Jul 2008 07:13:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: Jesse</title>
		<link>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-18</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Tue, 20 May 2008 14:47:04 +0000</pubDate>
		<guid>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-18</guid>
		<description>@oliver

That would be tricky - doing the full WP_Query() for tag and category and not making any use of the page url default query should give you the right parameters - see the WP codex.

Does sort of defeat the object of tags (flat taxonomy) as opposed to categories (hierarchical taxonomy) though.</description>
		<content:encoded><![CDATA[<p>@oliver</p>
<p>That would be tricky - doing the full WP_Query() for tag and category and not making any use of the page url default query should give you the right parameters - see the WP codex.</p>
<p>Does sort of defeat the object of tags (flat taxonomy) as opposed to categories (hierarchical taxonomy) though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oliver</title>
		<link>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-17</link>
		<dc:creator>oliver</dc:creator>
		<pubDate>Tue, 20 May 2008 10:04:20 +0000</pubDate>
		<guid>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-17</guid>
		<description>aha found out that tag&#38;category cant get queried at the same time according to http://wordpress.org/support/topic/152904?replies=28
(shows a happy workaround)

Thats why $query_string . '&#38;category_name=featured' as tag+cat wont work either. Wonder how you made it work though ;)))</description>
		<content:encoded><![CDATA[<p>aha found out that tag&amp;category cant get queried at the same time according to <a href="http://wordpress.org/support/topic/152904?replies=28" rel="nofollow">http://wordpress.org/support/topic/152904?replies=28</a><br />
(shows a happy workaround)</p>
<p>Thats why $query_string . &#8216;&amp;category_name=featured&#8217; as tag+cat wont work either. Wonder how you made it work though ;)))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oliver</title>
		<link>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-14</link>
		<dc:creator>oliver</dc:creator>
		<pubDate>Mon, 19 May 2008 20:35:41 +0000</pubDate>
		<guid>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-14</guid>
		<description>hello,
im still new to wp, but need things "advanced" as filter posts in its categories on a tag page. 
So after hours of try/error and search for a solution I found your article which explains it quite well using query_post.

But -&#62; query_posts($query_string . ‘&#38;category_name=featured’)
still it still doesnt filter to tag+cat, but shows ALL cat entries per tag. I also tried cat_ID, cat_name, category_nicename etc. Any ideas?

( I thought that maybe $query_string gives a wrong tagname. Whats puzzling me is if i echo $query_string("", true); it gives me  tag=foo() as result with tag=, but if i have $query_string = $current_tag; $query_string("", true); its foo() , which is correct, but doesnt help.. )

Os..</description>
		<content:encoded><![CDATA[<p>hello,<br />
im still new to wp, but need things &#8220;advanced&#8221; as filter posts in its categories on a tag page.<br />
So after hours of try/error and search for a solution I found your article which explains it quite well using query_post.</p>
<p>But -&gt; query_posts($query_string . ‘&amp;category_name=featured’)<br />
still it still doesnt filter to tag+cat, but shows ALL cat entries per tag. I also tried cat_ID, cat_name, category_nicename etc. Any ideas?</p>
<p>( I thought that maybe $query_string gives a wrong tagname. Whats puzzling me is if i echo $query_string(&#8221;", true); it gives me  tag=foo() as result with tag=, but if i have $query_string = $current_tag; $query_string(&#8221;", true); its foo() , which is correct, but doesnt help.. )</p>
<p>Os..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-3</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Mon, 05 May 2008 06:07:34 +0000</pubDate>
		<guid>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-3</guid>
		<description>&lt;a href="http://codex.wordpress.org/Conditional_Tags" rel="nofollow"&gt;WordPress conditional tags&lt;/a&gt; is the place to start for all that...</description>
		<content:encoded><![CDATA[<p><a href="http://codex.wordpress.org/Conditional_Tags" rel="nofollow">WordPress conditional tags</a> is the place to start for all that&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rory</title>
		<link>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-2</link>
		<dc:creator>Rory</dc:creator>
		<pubDate>Sun, 04 May 2008 11:33:47 +0000</pubDate>
		<guid>http://www.blogchemistry.com/2008/04/23/wordpress-modified-dependent-and-extra-loops/#comment-2</guid>
		<description>Thanks for sharing your knowledge. What's the simplest method of querying the database to establish if a specific post or Page is published and then use this as a conditional to display certain text or graphic independent of the post and the Loop?</description>
		<content:encoded><![CDATA[<p>Thanks for sharing your knowledge. What&#8217;s the simplest method of querying the database to establish if a specific post or Page is published and then use this as a conditional to display certain text or graphic independent of the post and the Loop?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
