<?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 Bug: Tags do not appear under WP_Query</title>
	<atom:link href="http://wplancer.com/wordpess-bug-tags-do-not-appear-under-wp_query/feed/" rel="self" type="application/rss+xml" />
	<link>http://wplancer.com/wordpess-bug-tags-do-not-appear-under-wp_query/</link>
	<description>WordPress Freelance Designer &#38; Developer</description>
	<lastBuildDate>Thu, 29 Dec 2011 20:01:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Veiniaglonger</title>
		<link>http://wplancer.com/wordpess-bug-tags-do-not-appear-under-wp_query/#comment-682</link>
		<dc:creator>Veiniaglonger</dc:creator>
		<pubDate>Thu, 23 Apr 2009 09:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.wplancer.com/?p=75#comment-682</guid>
		<description>This site is very cool throughout the Internet.</description>
		<content:encoded><![CDATA[<p>This site is very cool throughout the Internet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ice machines</title>
		<link>http://wplancer.com/wordpess-bug-tags-do-not-appear-under-wp_query/#comment-650</link>
		<dc:creator>ice machines</dc:creator>
		<pubDate>Wed, 15 Apr 2009 02:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.wplancer.com/?p=75#comment-650</guid>
		<description>Thanks a lot for the code!</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the code!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daweb</title>
		<link>http://wplancer.com/wordpess-bug-tags-do-not-appear-under-wp_query/#comment-587</link>
		<dc:creator>daweb</dc:creator>
		<pubDate>Fri, 06 Mar 2009 18:43:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.wplancer.com/?p=75#comment-587</guid>
		<description>You are welcome.</description>
		<content:encoded><![CDATA[<p>You are welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BANAGO</title>
		<link>http://wplancer.com/wordpess-bug-tags-do-not-appear-under-wp_query/#comment-585</link>
		<dc:creator>BANAGO</dc:creator>
		<pubDate>Fri, 06 Mar 2009 18:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.wplancer.com/?p=75#comment-585</guid>
		<description>Thanks very much - I will try that out and I&#039;ll let you know. Thanks once more!</description>
		<content:encoded><![CDATA[<p>Thanks very much &#8211; I will try that out and I&#8217;ll let you know. Thanks once more!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daweb</title>
		<link>http://wplancer.com/wordpess-bug-tags-do-not-appear-under-wp_query/#comment-584</link>
		<dc:creator>daweb</dc:creator>
		<pubDate>Fri, 06 Mar 2009 14:32:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.wplancer.com/?p=75#comment-584</guid>
		<description>Sorry, this way:

while ($the_query-&gt;have_posts()) 
			{
				$the_query-&gt;the_post();
				$do_not_duplicate[$post-&gt;ID] = $post-&gt;ID;
				$tags = get_the_tags($the_query-&gt;post-&gt;ID);
				foreach($tags as $key =&gt; $value)
				{
					$menu .= &#039;&lt;a href=&quot;&#039;.get_permalink().&#039;&quot; title=&quot;&#039;.the_title_attribute(&#039;echo=0&#039;).&#039;&quot; rel=&quot;nofollow&quot;&gt;&#039;.$value-&gt;name.&#039;&lt;/a&gt;&#039;;
				}
			} 
			$menu .= &#039;    
					  &#039; . chr(13);
		}</description>
		<content:encoded><![CDATA[<p>Sorry, this way:</p>
<p>while ($the_query-&gt;have_posts())<br />
			{<br />
				$the_query-&gt;the_post();<br />
				$do_not_duplicate[$post-&gt;ID] = $post-&gt;ID;<br />
				$tags = get_the_tags($the_query-&gt;post-&gt;ID);<br />
				foreach($tags as $key =&gt; $value)<br />
				{<br />
					$menu .= &#8216;<a href="'.get_permalink().'" title="'.the_title_attribute('echo=0').'" rel="nofollow">&#8216;.$value-&gt;name.&#8217;</a>&#8216;;<br />
				}<br />
			}<br />
			$menu .= &#8216;<br />
					  &#8216; . chr(13);<br />
		}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daweb</title>
		<link>http://wplancer.com/wordpess-bug-tags-do-not-appear-under-wp_query/#comment-582</link>
		<dc:creator>daweb</dc:creator>
		<pubDate>Fri, 06 Mar 2009 14:29:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.wplancer.com/?p=75#comment-582</guid>
		<description>I solved this way:

			while ($the_query-&gt;have_posts()) 
			{
				$the_query-&gt;the_post();
				$do_not_duplicate[$the_query-&gt;post-&gt;ID] = $the_query-&gt;post-&gt;ID;
				$tags = wp_get_post_tags($the_query-&gt;post-&gt;ID);
				foreach($tags as $key =&gt; $value)
				{
					$menu .= &#039;&lt;a href=&quot;&#039;.get_permalink().&#039;&quot; title=&quot;&#039;.the_title_attribute(&#039;echo=0&#039;).&#039;&quot; rel=&quot;nofollow&quot;&gt;&#039;.$value-&gt;name.&#039;&lt;/a&gt;&#039;;
				}
			} 
			$menu .= &#039;    
					  &#039; . chr(13);
		}</description>
		<content:encoded><![CDATA[<p>I solved this way:</p>
<p>			while ($the_query-&gt;have_posts())<br />
			{<br />
				$the_query-&gt;the_post();<br />
				$do_not_duplicate[$the_query-&gt;post-&gt;ID] = $the_query-&gt;post-&gt;ID;<br />
				$tags = wp_get_post_tags($the_query-&gt;post-&gt;ID);<br />
				foreach($tags as $key =&gt; $value)<br />
				{<br />
					$menu .= &#8216;<a href="'.get_permalink().'" title="'.the_title_attribute('echo=0').'" rel="nofollow">&#8216;.$value-&gt;name.&#8217;</a>&#8216;;<br />
				}<br />
			}<br />
			$menu .= &#8216;<br />
					  &#8216; . chr(13);<br />
		}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

