<?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 get post images and the_post_thumbnail caption</title>
	<atom:link href="http://stereointeractive.com/blog/2010/02/12/wordpress-get-post-images-and-the_post_thumbnail-caption/feed/" rel="self" type="application/rss+xml" />
	<link>http://stereointeractive.com/blog/2010/02/12/wordpress-get-post-images-and-the_post_thumbnail-caption/</link>
	<description>Development Blog</description>
	<lastBuildDate>Tue, 07 Sep 2010 10:31:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rob</title>
		<link>http://stereointeractive.com/blog/2010/02/12/wordpress-get-post-images-and-the_post_thumbnail-caption/comment-page-1/#comment-565</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 27 Mar 2010 23:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=391#comment-565</guid>
		<description>&lt;pre lang=&quot;php&quot;&gt;
function remove_index_loop() {
  remove_action(&#039;thematic_indexloop&#039;, &#039;thematic_index_loop&#039;);
}
add_action(&#039;init&#039;, &#039;remove_index_loop&#039;);
 
function snippet_index_loop() {
  global $post;
        /* Count the number of posts so we can insert a widgetized area */ $count = 1;
        while ( have_posts() ) : the_post() ?&gt;
                
            &lt;div class=&quot;column &quot;&gt;
                
                    &lt;div id=&quot;post-&quot; class=&quot;&quot;&gt;
                        
                        
        
                           
&lt;?php wp_link_pages(&#039;before=&#039; .__(&#039;Pages:&#039;, &#039;thematic&#039;) . &#039;&amp;after=&#039;) ?&gt;
                        
                            
                    &lt;!-- .post --&gt;
                &lt;!-- .clear-fix --&gt;
            &lt;!-- .column --&gt;
 
                    &lt;?php comments_template();
                    if ($count==$thm_insert_position) { get_sidebar(&#039;index-insert&#039;);}
 
 
        $count = $count + 1;
        endwhile;
}
add_action(&#039;thematic_indexloop&#039;, &#039;snippet_index_loop&#039;);
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span class="kw2">function</span> remove_index_loop<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
  remove_action<span class="br0">&#40;</span><span class="st_h">'thematic_indexloop'</span><span class="sy0">,</span> <span class="st_h">'thematic_index_loop'</span><span class="br0">&#41;</span><span class="sy0">;</span>
<span class="br0">&#125;</span>
add_action<span class="br0">&#40;</span><span class="st_h">'init'</span><span class="sy0">,</span> <span class="st_h">'remove_index_loop'</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
<span class="kw2">function</span> snippet_index_loop<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
  <span class="kw2">global</span> <span class="re0">$post</span><span class="sy0">;</span>
        <span class="coMULTI">/* Count the number of posts so we can insert a widgetized area */</span> <span class="re0">$count</span> <span class="sy0">=</span> <span class="nu0">1</span><span class="sy0">;</span>
        <span class="kw1">while</span> <span class="br0">&#40;</span> have_posts<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#41;</span> <span class="sy0">:</span> the_post<span class="br0">&#40;</span><span class="br0">&#41;</span> ?<span class="sy0">&amp;</span>gt<span class="sy0">;</span>
&nbsp;
            <span class="sy0">&amp;</span>lt<span class="sy0">;</span>div <span class="kw2">class</span><span class="sy0">=&amp;</span>quot<span class="sy0">;</span>column <span class="st0">&quot;&amp;gt;
&nbsp;
                    &amp;lt;div id=&amp;quot;post-&quot;</span> <span class="kw2">class</span><span class="sy0">=</span><span class="st0">&quot;&quot;</span><span class="sy0">&amp;</span>gt<span class="sy0">;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
<span class="sy0">&amp;</span>lt<span class="sy0">;</span>?php wp_link_pages<span class="br0">&#40;</span><span class="sy0">&amp;</span><span class="co2">#039;before=' .__('Pages:', 'thematic') . '&amp;amp;after=') ?&amp;gt;
</span>                        
&nbsp;
                    <span class="sy0">&lt;!--</span> <span class="sy0">.</span>post <span class="sy0">--&gt;</span>
                <span class="sy0">&lt;!--</span> <span class="sy0">.</span>clear<span class="sy0">-</span>fix <span class="sy0">--&gt;</span>
            <span class="sy0">&lt;!--</span> <span class="sy0">.</span>column <span class="sy0">--&gt;</span>
&nbsp;
                    <span class="sy0">&amp;</span>lt<span class="sy0">;</span>?php comments_template<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span>
                    <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$count</span><span class="sy0">==</span><span class="re0">$thm_insert_position</span><span class="br0">&#41;</span> <span class="br0">&#123;</span> get_sidebar<span class="br0">&#40;</span><span class="sy0">&amp;</span><span class="co2">#039;index-insert&amp;#039;);}
</span> 
&nbsp;
        <span class="re0">$count</span> <span class="sy0">=</span> <span class="re0">$count</span> <span class="sy0">+</span> <span class="nu0">1</span><span class="sy0">;</span>
        <span class="kw1">endwhile</span><span class="sy0">;</span>
<span class="br0">&#125;</span>
add_action<span class="br0">&#40;</span><span class="sy0">&amp;</span><span class="co2">#039;thematic_indexloop&amp;#039;, &amp;#039;snippet_index_loop&amp;#039;);</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://stereointeractive.com/blog/2010/02/12/wordpress-get-post-images-and-the_post_thumbnail-caption/comment-page-1/#comment-564</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 27 Mar 2010 23:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=391#comment-564</guid>
		<description>Hello,

Wonderful plugin, thanks. I spent a while looking for some way of displaying my captions. 

I also wanted to use the caption as a rollover state of a clickable thumbnail. I think this requires some code tweaks. Do you think this would even be possible?

I could send the code in my functions file for my loop if that helps.
Cheers

Rob</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Wonderful plugin, thanks. I spent a while looking for some way of displaying my captions. </p>
<p>I also wanted to use the caption as a rollover state of a clickable thumbnail. I think this requires some code tweaks. Do you think this would even be possible?</p>
<p>I could send the code in my functions file for my loop if that helps.<br />
Cheers</p>
<p>Rob</p>
]]></content:encoded>
	</item>
</channel>
</rss>
