<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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"
		>
	<channel>
		<title>WordPress &#8250; Support &#187; Tag: Comments loop - Recent Posts</title>
		<link>http://wordpress.org/tags/comments-loop</link>
		<description>WordPress &#8250; Support &#187; Tag: Comments loop - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 18:22:00 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://wordpress.org/support/rss/tags/comments-loop" rel="self" type="application/rss+xml" />

		<item>
			<title>ZehrGut on "[Plugin: Comments Loop] Does plugin allow to sort comments by comment&#039;s meta?"</title>
			<link>http://wordpress.org/support/topic/plugin-comments-loop-does-plugin-allow-sort-comments-by-comments-meta#post-2368728</link>
			<pubDate>Fri, 30 Sep 2011 23:04:29 +0000</pubDate>
			<dc:creator>ZehrGut</dc:creator>
			<guid isPermaLink="false">2368728@http://wordpress.org/support/</guid>
			<description><![CDATA[<p>Hello!<br />
Interesting plugin.<br />
But does plugin allow to sort comments by comment's meta (custom field)?<br />
Thanks in advance</p>
<p><a href="http://wordpress.org/extend/plugins/comments-loop/" rel="nofollow">http://wordpress.org/extend/plugins/comments-loop/</a>
</p>]]></description>
					</item>
		<item>
			<title>9ale7 on "[Plugin: Comments Loop] not working with 3.0.1"</title>
			<link>http://wordpress.org/support/topic/plugin-comments-loop-not-working-with-301#post-1851709</link>
			<pubDate>Fri, 24 Dec 2010 07:47:58 +0000</pubDate>
			<dc:creator>9ale7</dc:creator>
			<guid isPermaLink="false">1851709@http://wordpress.org/support/</guid>
			<description><![CDATA[<p>not working with the last WP version, CP became "funny" the panel as a whole didn't work right.<br />
once deactivated, everything went back to normal.
</p>]]></description>
					</item>
		<item>
			<title>decees on "Loop and Commment Solution"</title>
			<link>http://wordpress.org/support/topic/loop-and-commment-solution#post-766341</link>
			<pubDate>Sat, 24 May 2008 07:05:17 +0000</pubDate>
			<dc:creator>decees</dc:creator>
			<guid isPermaLink="false">766341@http://wordpress.org/support/</guid>
			<description><![CDATA[<p>Sorry, I haven't read the code correctly :"&#62;<br />
I got it .
</p>]]></description>
					</item>
		<item>
			<title>decees on "Loop and Commment Solution"</title>
			<link>http://wordpress.org/support/topic/loop-and-commment-solution#post-765738</link>
			<pubDate>Fri, 23 May 2008 08:44:32 +0000</pubDate>
			<dc:creator>decees</dc:creator>
			<guid isPermaLink="false">765738@http://wordpress.org/support/</guid>
			<description><![CDATA[<p>Dear startribe,</p>
<p>Can you show me how to create a loop within a loop like you have done ?</p>
<p>thx
</p>]]></description>
					</item>
		<item>
			<title>startribe on "Loop and Commment Solution"</title>
			<link>http://wordpress.org/support/topic/loop-and-commment-solution#post-687174</link>
			<pubDate>Sun, 03 Feb 2008 22:27:10 +0000</pubDate>
			<dc:creator>startribe</dc:creator>
			<guid isPermaLink="false">687174@http://wordpress.org/support/</guid>
			<description><![CDATA[<p>I'm sure some code maybe redundant... and there is a better way, because I'm so new at this. So any additional suggestions to clean it up are welcome; otherwise this is resolved.</p>
<p>Thanks!
</p>]]></description>
					</item>
		<item>
			<title>startribe on "Loop and Commment Solution"</title>
			<link>http://wordpress.org/support/topic/loop-and-commment-solution#post-687173</link>
			<pubDate>Sun, 03 Feb 2008 22:25:49 +0000</pubDate>
			<dc:creator>startribe</dc:creator>
			<guid isPermaLink="false">687173@http://wordpress.org/support/</guid>
			<description><![CDATA[<p><strong>RESOLVED!</strong></p>
<p>I stopped trying to run into the brick wall, found the doorway, and it was through ending the first loop from the main post before beginning a new independent and refreshed comment loop. It worked!</p>
<p>Here is my final code:<br />
<pre><code>&#60;?php if (have_posts()) : ?&#62;
&#60;?php while (have_posts()) : the_post(); ?&#62;

&#60;div class=&#34;post&#34; id=&#34;post-&#60;?php the_ID(); ?&#62;&#34;&#62;
&#60;h2&#62;&#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34; rel=&#34;bookmark&#34; title=&#34;Permanent Link to &#60;?php the_title_attribute(); ?&#62;&#34;&#62;&#60;?php the_title(); ?&#62;&#60;/a&#62;&#60;/h2&#62;
&#60;p class=&#34;postmetadata&#34;&#62;&#60;?php the_time(&#39;m.d.y&#39;) ?&#62; - &#60;?php the_tags(&#39;Tags: &#39;, &#39;, &#39;, &#39;&#60;br /&#62;&#39;); ?&#62; Posted in &#60;?php the_category(&#39;, &#39;) ?&#62; &#124; &#60;?php edit_post_link(&#39;Edit&#39;, &#39;&#39;, &#39; &#124; &#39;); ?&#62;  &#60;?php comments_popup_link(&#39;No Comments &#187;&#39;, &#39;1 Comment &#187;&#39;, &#39;% Comments &#187;&#39;); ?&#62;&#60;/p&#62;
&#60;div class=&#34;post_entry&#34;&#62;
&#60;?php the_content(&#39;read more &#38;raquo;&#39;); ?&#62;
&#60;?php wp_link_pages(); ?&#62;
&#60;/div&#62;
&#60;?php endwhile; ?&#62;
&#60;?php endif; ?&#62;

&#60;?php rewind_posts(); ?&#62;
&#60;?php if (have_posts()) : ?&#62;
&#60;?php while (have_posts()) : the_post(); ?&#62;
&#60;div id=&#34;comments&#34;&#62;
&#60;?php comments_template(); // Get wp-comments.php template ?&#62;
&#60;/div&#62;
&#60;?php endwhile; ?&#62;
&#60;div class=&#34;navigation&#34;&#62;
&#60;div class=&#34;alignleft&#34;&#62;&#60;?php next_posts_link(&#39;&#38;laquo; Older Entries&#39;) ?&#62;&#60;/div&#62;
&#60;div class=&#34;alignright&#34;&#62;&#60;?php previous_posts_link(&#39;Newer Entries &#38;raquo;&#39;) ?&#62;&#60;/div&#62;
&#60;/div&#62;
&#60;?php else : ?&#62;
&#60;h2 class=&#34;center&#34;&#62;Not Found&#60;/h2&#62;
&#60;p class=&#34;center&#34;&#62;Sorry, but you are looking for something that isn&#39;t here.&#60;/p&#62;
&#60;?php include (TEMPLATEPATH . &#34;/searchform.php&#34;); ?&#62;
&#60;?php endif; ?&#62;
&#60;/div&#62;</code></pre>]]></description>
					</item>
		<item>
			<title>startribe on "Loop and Commment Solution"</title>
			<link>http://wordpress.org/support/topic/loop-and-commment-solution#post-687153</link>
			<pubDate>Sun, 03 Feb 2008 21:59:26 +0000</pubDate>
			<dc:creator>startribe</dc:creator>
			<guid isPermaLink="false">687153@http://wordpress.org/support/</guid>
			<description><![CDATA[<p>Ok, I figured out the comment displayed on the main page is the one associated with the last comment:<br />
<a href="http://joelsimone.com/content/?p=43#comment-9" rel="nofollow">http://joelsimone.com/content/?p=43#comment-9</a></p>
<p>So it looks like I need to reset the loop in some way, or to get the loop to re-recognize the main loop query again. I was assuming this would be put before the comment section.</p>
<p>I'm doing my best, but I'm still new to php and programming, so any help is greatly appreciated.
</p>]]></description>
					</item>
		<item>
			<title>startribe on "Loop and Commment Solution"</title>
			<link>http://wordpress.org/support/topic/loop-and-commment-solution#post-687121</link>
			<pubDate>Sun, 03 Feb 2008 20:23:59 +0000</pubDate>
			<dc:creator>startribe</dc:creator>
			<guid isPermaLink="false">687121@http://wordpress.org/support/</guid>
			<description><![CDATA[<p>I'm trying to get my comments for a post to work correctly while operating a loop within a loop.</p>
<p>The loop within a loops purpose is to create a main post that has a sub-journal. That sub-journal is a list of posts associated with the post. I have the loop within the loop working on posts; however, I would like for comments to be available on the main post.</p>
<p>The primary loop is, I belive, pretty standard code, I will include the html too:<br />
<pre><code>&#60;?php if (have_posts()) : ?&#62;
&#60;?php while (have_posts()) : the_post(); ?&#62;

&#60;div class=&#34;post&#34; id=&#34;post-&#60;?php the_ID(); ?&#62;&#34;&#62;
&#60;h2&#62;&#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34; rel=&#34;bookmark&#34; title=&#34;Permanent Link to &#60;?php the_title_attribute(); ?&#62;&#34;&#62;&#60;?php the_title(); ?&#62;&#60;/a&#62;&#60;/h2&#62;
&#60;p class=&#34;postmetadata&#34;&#62;&#60;?php the_time(&#39;m.d.y&#39;) ?&#62; - &#60;?php the_tags(&#39;Tags: &#39;, &#39;, &#39;, &#39;&#60;br /&#62;&#39;); ?&#62; Posted in &#60;?php the_category(&#39;, &#39;) ?&#62; &#124; &#60;?php edit_post_link(&#39;Edit&#39;, &#39;&#39;, &#39; &#124; &#39;); ?&#62;  &#60;?php comments_popup_link(&#39;No Comments &#187;&#39;, &#39;1 Comment &#187;&#39;, &#39;% Comments &#187;&#39;); ?&#62;&#60;/p&#62;
&#60;div class=&#34;post_entry&#34;&#62;
&#60;?php the_content(&#39;read more &#38;raquo;&#39;); ?&#62;
&#60;?php wp_link_pages(); ?&#62;
&#60;/div&#62;

&#60;div id=&#34;comments&#34;&#62;
&#60;?php comments_template(); // Get wp-comments.php template ?&#62;
&#60;/div&#62;
&#60;/div&#62;

&#60;?php endwhile; ?&#62;
&#60;div class=&#34;navigation&#34;&#62;
&#60;div class=&#34;alignleft&#34;&#62;&#60;?php next_posts_link(&#39;&#38;laquo; Older Entries&#39;) ?&#62;&#60;/div&#62;
&#60;div class=&#34;alignright&#34;&#62;&#60;?php previous_posts_link(&#39;Newer Entries &#38;raquo;&#39;) ?&#62;&#60;/div&#62;
&#60;/div&#62;
&#60;?php else : ?&#62;
&#60;h2 class=&#34;center&#34;&#62;Not Found&#60;/h2&#62;
&#60;p class=&#34;center&#34;&#62;Sorry, but you are looking for something that isn&#39;t here.&#60;/p&#62;
&#60;?php include (TEMPLATEPATH . &#34;/searchform.php&#34;); ?&#62;
&#60;?php endif; ?&#62;</code></pre>
<p>And this is the code I post within a post through Wordpress (Exec-PHP plugin activated):</p>
<pre><code>&#60;?php $my_query = new WP_Query(&#39;tag=Eng-4+Notes&#39;);
while ($my_query-&#62;have_posts()) : $my_query-&#62;the_post();
$do_not_duplicate = $post-&#62;ID; ?&#62;
&#60;?php the_title(); ?&#62;: &#60;?php the_time(&#39;m.d.y&#39;) ?&#62;
&#60;?php the_excerpt_reloaded(200, &#39;&#60;img&#62;&#60;p&#62;&#39;, &#39;&#39;, TRUE, &#39;&#39;, FALSE, 1); ?&#62;
&#60;?php endwhile; ?&#62;</code></pre>
<p>Now again, the main post and sub-posts generate, but the current comments for the main posts does not appear. Here is a link to the page (one single entry under Class Journal, I may be editing it too:<br />
<a href="http://joelsimone.com/content/?p=43" rel="nofollow">http://joelsimone.com/content/?p=43</a></p>
<p>So, how do I get comments working? Is it possible?</p>
<p>Thanks!
</p>]]></description>
					</item>

	</channel>
</rss>

