<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<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>WordPress &#8250; Support Tag: thumbnail-for-excerpts</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: thumbnail-for-excerpts</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 09:37:59 +0000</pubDate>

<item>
<title>physalis on "[Plugin: Thumbnail For Excerpts] TNs not showing on pages including posts/showing wrong thumbnails"</title>
<link>http://wordpress.org/support/topic/326342#post-1263752</link>
<pubDate>Thu, 29 Oct 2009 21:50:57 +0000</pubDate>
<dc:creator>physalis</dc:creator>
<guid isPermaLink="false">1263752@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hello there,&#60;br /&#62;
I am experiencing some problems with the thumbnail-for-excerpt plugin. It really works well on category pages, but refuses to work on pages including post, e.g. showing the last five comments from three categories. The symptoms are: no thumbnails are shown normally. If the content of the page itself contains a picture, TNFE uses that one as the thumbnail for all posts included on that page instead of the single ones from the posts themselves. The actual page content can there be inserted as either the_content() or the_excerpt(), it doesn't matter. &#60;/p&#62;
&#60;p&#62;Here is, more or less, the relevant part for the page in code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Template Name: Portfolio
*/

get_header(); ?&#38;gt;

&#38;lt;?php get_sidebar(); ?&#38;gt;

&#38;lt;div class=&#38;quot;left portfolio&#38;quot;&#38;gt;
            &#38;lt;h2 class=&#38;quot;contentheading&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h2&#38;gt;
            &#38;lt;ul&#38;gt;
 &#38;lt;?php wp_list_categories(&#38;#39;title_li=&#38;amp;exclude=9,10&#38;amp;child_of=1&#38;#39;); ?&#38;gt;
&#38;lt;/ul&#38;gt;
&#38;lt;p class=&#38;quot;fatspacer&#38;quot;&#38;gt;&#38;lt;/p&#38;gt;
&#38;lt;?php the_content(); ?&#38;gt;
&#38;lt;p class=&#38;quot;fatspacer&#38;quot;&#38;gt;&#38;lt;/p&#38;gt;

&#38;lt;?php
// page id 21 will get category ID 12 posts, page 16 will get category 32 posts, page 28 will get category 17 posts
if (is_page(&#38;#39;18&#38;#39;) ) {
$cat = array(6,7,8);
} elseif ( is_page(&#38;#39;126&#38;#39;) ) {
$cat = array(9);
} elseif ( is_page(&#38;#39;22&#38;#39;) ) {
$cat = array(10);
} else {
$cat = &#38;#39;&#38;#39;;
}

$showposts = 5; // -1 shows all posts
$do_not_show_stickies = 1; // 0 to show stickies
$args=array(
   &#38;#39;category__in&#38;#39; =&#38;gt; $cat,
   &#38;#39;showposts&#38;#39; =&#38;gt; $showposts,
   &#38;#39;caller_get_posts&#38;#39; =&#38;gt; $do_not_show_stickies
   );
$my_query = new WP_Query($args); 

?&#38;gt;
	&#38;lt;?php if( $my_query-&#38;gt;have_posts() ) : ?&#38;gt;

		&#38;lt;?php while ($my_query-&#38;gt;have_posts()) : $my_query-&#38;gt;the_post(); ?&#38;gt;
			&#38;lt;?php
			//necessary to show the tags
			global $wp_query;
			$wp_query-&#38;gt;in_the_loop = true;
			?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;... followed by the elements for the excerpts etc.&#60;br /&#62;
Does anybody have a basic idea what could hinder TNFE from seeing the appropriate thumbnails and inserting them? I'd be grateful if someone could provide help....&#60;/p&#62;
&#60;p&#62;Cheers!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/thumbnail-for-excerpts/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/thumbnail-for-excerpts/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>zkorwin on "[Plugin: Thumbnail For Excerpts] Issues with default image"</title>
<link>http://wordpress.org/support/topic/277642#post-1095597</link>
<pubDate>Mon, 08 Jun 2009 21:14:59 +0000</pubDate>
<dc:creator>zkorwin</dc:creator>
<guid isPermaLink="false">1095597@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I was thinking that it puts a default image in when no image is present which is not the case. I fixed it so it can do that however. Put this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if($pos===false){
echo(&#38;quot;&#38;lt;img src=\&#38;quot;http://www.yoursite.com/yourimage.jpg\&#38;quot; class=imgtfe hspace=5 align=left width=100 height=58 border=0&#38;gt;&#38;quot;);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Before this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if($pos!==false){
		$content=substr($content,$pos,stripos($content,&#38;quot;&#38;gt;&#38;quot;,$pos));
		$pos = stripos($content,&#38;quot;src=&#38;quot;)+4;
		$stopchar=&#38;quot; &#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Where you would just replace the attributes with ones that you need.
&#60;/p&#62;</description>
</item>
<item>
<title>zkorwin on "[Plugin: Thumbnail For Excerpts] Issues with default image"</title>
<link>http://wordpress.org/support/topic/277642#post-1095369</link>
<pubDate>Mon, 08 Jun 2009 16:54:25 +0000</pubDate>
<dc:creator>zkorwin</dc:creator>
<guid isPermaLink="false">1095369@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've set the &#34;createth&#34; value to yes, but still no default image when no image is present in the post.&#60;/p&#62;
&#60;p&#62;Does anyone know how to make it work or even have it working?
&#60;/p&#62;</description>
</item>
<item>
<title>nims on "[Plugin: Thumbnail For Excerpts] Thumbnail for Excerpts working with NextGen Gallery"</title>
<link>http://wordpress.org/support/topic/226949#post-1093428</link>
<pubDate>Sat, 06 Jun 2009 08:14:33 +0000</pubDate>
<dc:creator>nims</dc:creator>
<guid isPermaLink="false">1093428@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am also interested for the same.
&#60;/p&#62;</description>
</item>
<item>
<title>callumalden on "Invalid XHTML code in thumbnail-for-excerpts plug in"</title>
<link>http://wordpress.org/support/topic/252560#post-1081407</link>
<pubDate>Sat, 23 May 2009 12:26:27 +0000</pubDate>
<dc:creator>callumalden</dc:creator>
<guid isPermaLink="false">1081407@http://wordpress.org/support/</guid>
<description>&#60;p&#62;thanks, that's the fix i've been looking for!&#60;/p&#62;
&#60;p&#62;lines 124 &#38;gt; 133 are just plain wrong in the original plugin. someone hear an update coming?
&#60;/p&#62;</description>
</item>
<item>
<title>rillest on "[Plugin: Thumbnail For Excerpts] Thumbnail for Excerpts working with NextGen Gallery"</title>
<link>http://wordpress.org/support/topic/226949#post-1037200</link>
<pubDate>Sun, 05 Apr 2009 13:11:06 +0000</pubDate>
<dc:creator>rillest</dc:creator>
<guid isPermaLink="false">1037200@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Mee too! plz post the code!&#60;br /&#62;
Thanks&#60;br /&#62;
rILLEST
&#60;/p&#62;</description>
</item>
<item>
<title>mtg169 on "Invalid XHTML code in thumbnail-for-excerpts plug in"</title>
<link>http://wordpress.org/support/topic/252560#post-1027706</link>
<pubDate>Thu, 26 Mar 2009 20:30:16 +0000</pubDate>
<dc:creator>mtg169</dc:creator>
<guid isPermaLink="false">1027706@http://wordpress.org/support/</guid>
<description>&#60;p&#62;It's simple really. I'm not sure of the line numbers in an unedited thumbnailforexcerpts.php, but just scroll down towards the bottom and there are a couple of echos that output the links and images. Just wrap each attribute value with a single quote or escape to use double quotes and close the image tags. Looks something like this (my lines 124-133):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo (TFE_LINK==&#38;quot;yes&#38;quot;?&#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink($id).&#38;quot;&#38;#39;&#38;gt;&#38;quot;:&#38;quot;&#38;quot;).&#38;quot;&#38;lt;img src=&#38;#39;&#38;quot;.$img2.&#38;quot;&#38;#39; class=&#38;#39;&#38;quot;.TFE_CLASS.&#38;quot;&#38;#39; hspace=&#38;#39;&#38;quot;.TFE_SPACE.&#38;quot;&#38;#39; align=&#38;#39;&#38;quot;.TFE_ALIGN.&#38;quot;&#38;#39; $condsize=&#38;#39;&#38;quot;.$tfesize.&#38;quot;&#38;#39; &#38;quot;.(TFE_TITLE==&#38;quot;yes&#38;quot;?&#38;quot;alt=&#38;#39;&#38;quot;.$tit1.&#38;quot;&#38;#39; title=&#38;#39;&#38;quot;.$tit1.&#38;quot;&#38;#39;&#38;quot;:&#38;quot;&#38;quot;).&#38;quot; border=&#38;#39;0&#38;#39;/&#38;gt;&#38;quot;.(TFE_LINK==&#38;quot;yes&#38;quot;?&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;:&#38;quot;&#38;quot;);
		}
		else {
			$condsize = &#38;quot;width&#38;quot;;
			if ((TFE_MAXSIZE==&#38;quot;yes&#38;quot;) &#38;#38;&#38;#38; extension_loaded(&#38;#39;gd&#38;#39;) &#38;#38;&#38;#38; function_exists(&#38;#39;gd_info&#38;#39;)) {
				$im = imagecreatefromjpeg(realpath(&#38;quot;.&#38;quot;).&#38;quot;/&#38;quot;.substr($img1,stripos($img1,&#38;quot;wp-content&#38;quot;)));
				if(imagesx($im)&#38;lt;imagesy($im))
					$condsize = &#38;quot;height&#38;quot;;
			}
		    echo (TFE_LINK==&#38;quot;yes&#38;quot;?&#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink($id).&#38;quot;&#38;#39;&#38;gt;&#38;quot;:&#38;quot;&#38;quot;).&#38;quot;&#38;lt;img src=&#38;#39;&#38;quot;.$img1.&#38;quot;&#38;#39; class=&#38;#39;&#38;quot;.TFE_CLASS.&#38;quot;&#38;#39; hspace=&#38;#39;&#38;quot;.TFE_SPACE.&#38;quot;&#38;#39; align=&#38;#39;&#38;quot;.TFE_ALIGN.&#38;quot;&#38;#39; $condsize=&#38;#39;&#38;quot;.$tfesize.&#38;quot;&#38;#39; &#38;quot;.(TFE_TITLE==&#38;quot;yes&#38;quot;?&#38;quot;alt=&#38;#39;&#38;quot;.$tit1.&#38;quot;&#38;#39; title=&#38;#39;&#38;quot;.$tit1.&#38;quot;&#38;#39;&#38;quot;:&#38;quot;&#38;quot;).&#38;quot; border=&#38;#39;0&#38;#39;/&#38;gt;&#38;quot;.(TFE_LINK==&#38;quot;yes&#38;quot;?&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;:&#38;quot;&#38;quot;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Maura McDonnell on "Invalid XHTML code in thumbnail-for-excerpts plug in"</title>
<link>http://wordpress.org/support/topic/252560#post-1014608</link>
<pubDate>Fri, 13 Mar 2009 16:38:45 +0000</pubDate>
<dc:creator>Maura McDonnell</dc:creator>
<guid isPermaLink="false">1014608@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi&#60;br /&#62;
This is great plug in, but alas it is creating invalid xHTML code.  I notice that none of the tags have a &#34; around them.  I do not know how to fix this in the thumbnailforexcerpts.php file.  I am not an expert on php so do not know how to adapt the code so that &#34;&#34; surround the img tag.  Also the img src code creates &#38;gt; instead of / &#38;gt;.  If anyone could paste up a solution, I would be so grateful.  Thank you
&#60;/p&#62;</description>
</item>
<item>
<title>asujon on "[Plugin: Thumbnail For Excerpts] Any way to create thumbnails for videos?"</title>
<link>http://wordpress.org/support/topic/249357#post-1004315</link>
<pubDate>Tue, 03 Mar 2009 20:11:14 +0000</pubDate>
<dc:creator>asujon</dc:creator>
<guid isPermaLink="false">1004315@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is there any way to create thumbnails for videos? The plugin works great, but unfortunately, I have a fair amount of video posts on my site, so those posts don't look as good.&#60;/p&#62;
&#60;p&#62;Is there some easy hack, or will I just have to upload a photo to each video post?
&#60;/p&#62;</description>
</item>
<item>
<title>alexemde on "[Plugin: Thumbnail For Excerpts] Thumbnail for Excerpts working with NextGen Gallery"</title>
<link>http://wordpress.org/support/topic/226949#post-989104</link>
<pubDate>Tue, 17 Feb 2009 18:54:45 +0000</pubDate>
<dc:creator>alexemde</dc:creator>
<guid isPermaLink="false">989104@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Can I add myself to the list, please? Interested in the modification as well...&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Alexandra
&#60;/p&#62;</description>
</item>
<item>
<title>driano on "[Plugin: Thumbnail For Excerpts] View thumb in rss?"</title>
<link>http://wordpress.org/support/topic/239734#post-973454</link>
<pubDate>Mon, 02 Feb 2009 12:25:13 +0000</pubDate>
<dc:creator>driano</dc:creator>
<guid isPermaLink="false">973454@http://wordpress.org/support/</guid>
<description>&#60;p&#62;this work automatic =) sorry!
&#60;/p&#62;</description>
</item>
<item>
<title>driano on "[Plugin: Thumbnail For Excerpts] View thumb in rss?"</title>
<link>http://wordpress.org/support/topic/239734#post-973449</link>
<pubDate>Mon, 02 Feb 2009 12:16:35 +0000</pubDate>
<dc:creator>driano</dc:creator>
<guid isPermaLink="false">973449@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm showing rss excerpt in another blog, how can i show the thumb in this another blog?&#60;/p&#62;
&#60;p&#62;The blog have text + thumb, and in another blog i'm showing this excerpt (rss) but the thumb don't appear...&#60;/p&#62;
&#60;p&#62;help!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/thumbnail-for-excerpts/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/thumbnail-for-excerpts/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>driano on "[Plugin: Thumbnail For Excerpts] Not work'n in WPMU"</title>
<link>http://wordpress.org/support/topic/207756#post-973447</link>
<pubDate>Mon, 02 Feb 2009 12:13:17 +0000</pubDate>
<dc:creator>driano</dc:creator>
<guid isPermaLink="false">973447@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Now working!
&#60;/p&#62;</description>
</item>
<item>
<title>acub on "[Plugin: Thumbnail For Excerpts] Thumbnail for Excerpts working with NextGen Gallery"</title>
<link>http://wordpress.org/support/topic/226949#post-973005</link>
<pubDate>Sun, 01 Feb 2009 20:25:20 +0000</pubDate>
<dc:creator>acub</dc:creator>
<guid isPermaLink="false">973005@http://wordpress.org/support/</guid>
<description>&#60;p&#62;i would be very interested in the custom code for making thumbnails automatically read singlepic or gallery tags and take the image from there. do you think you can explain how it should be done? i'm not much of programmer, but i got the hang of css and even to modify some php functions where i needed. &#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>jeremyclarke on "[Plugin: Thumbnail For Excerpts] image thumbnail create fail"</title>
<link>http://wordpress.org/support/topic/202680#post-964341</link>
<pubDate>Fri, 23 Jan 2009 16:40:23 +0000</pubDate>
<dc:creator>jeremyclarke</dc:creator>
<guid isPermaLink="false">964341@http://wordpress.org/support/</guid>
<description>&#60;p&#62;indeed. it's only 'hotlinking' if you don't have permission. In this modern day and age its often recommended that you host your images an another server because it frees up space in your php server. In our case we have translation sites that just repost the content of the english site in other languages. in those cases they use the images on the original domain to save time, and for some reason this breaks the plugin output only if i want square images, rectangles work fine...
&#60;/p&#62;</description>
</item>
<item>
<title>mheath on "[Plugin: Thumbnail For Excerpts] Thumbnail for Excerpts working with NextGen Gallery"</title>
<link>http://wordpress.org/support/topic/226949#post-930323</link>
<pubDate>Thu, 18 Dec 2008 23:53:03 +0000</pubDate>
<dc:creator>mheath</dc:creator>
<guid isPermaLink="false">930323@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have been using next Gen Gallery and Thumbnail for Excerpts on a site I am developing, and the main page has has 5 excerpts of the newest posts and a thumbnail to the side. Almost all posts have photos, but they are uploaded through NextGen Gallery. I reference these pictures using the [singlepic short tag for NextGen.&#60;/p&#62;
&#60;p&#62;Unfortunately, this is not recognized by Thumbnail for Excerpts.&#60;/p&#62;
&#60;p&#62;Because of this, I began adding some code that will help Thumbnail recognize these [singlepic images. I am mostly interested to see if there would be any interest in integrating such code into the Thumbnail for Excerpts regular release.&#60;/p&#62;
&#60;p&#62;I am not a developer on either team, but think this would be useful for many people.&#60;/p&#62;
&#60;p&#62;Any feedback or opinions on this?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/thumbnail-for-excerpts/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/thumbnail-for-excerpts/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>radukn on "[Plugin: Thumbnail For Excerpts] Not work'n in WPMU"</title>
<link>http://wordpress.org/support/topic/207756#post-905409</link>
<pubDate>Sat, 22 Nov 2008 07:07:36 +0000</pubDate>
<dc:creator>radukn</dc:creator>
<guid isPermaLink="false">905409@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Sorry, maybe someone who know WPMU will help. I use single installation of WP.
&#60;/p&#62;</description>
</item>
<item>
<title>nekobaby on "[Plugin: Thumbnail For Excerpts] Place IMG after Meta, Not Excerpt?"</title>
<link>http://wordpress.org/support/topic/212573#post-883339</link>
<pubDate>Fri, 24 Oct 2008 14:20:46 +0000</pubDate>
<dc:creator>nekobaby</dc:creator>
<guid isPermaLink="false">883339@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Okay, I'm using the following coding, the original was found &#60;a href=&#34;http://justintadlock.com/archives/2007/10/27/wordpress-custom-fields-adding-images-to-posts&#34;&#62;here&#60;/a&#62;, and I don't need to use the thumbnail-for-excerpts plugin!&#60;/p&#62;
&#60;p&#62;One problem, though. I can pull the image into my meta section, but the Key title and the link in the Value show as text as well. My coding is as follows....&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php get_header(); ?&#38;gt;
 &#38;lt;?php get_sidebar(); ?&#38;gt;
 &#38;lt;!-- Content --&#38;gt;
     &#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;
	&#38;lt;?php if (have_posts()) : ?&#38;gt;
	&#38;lt;?php while (have_posts()) : the_post(); ?&#38;gt;
	&#38;lt;?php $Thumbnail = get_post_meta($post-&#38;gt;ID,&#38;#39;Thumbnail&#38;#39;,true);?&#38;gt;
 &#38;lt;!-- Post --&#38;gt;
	&#38;lt;div class=&#38;quot;post&#38;quot; id=&#38;quot;post-&#38;lt;?php the_ID(); ?&#38;gt;&#38;quot;&#38;gt;
	    &#38;lt;div class=&#38;quot;post-title&#38;quot;&#38;gt;
	      &#38;lt;div class=&#38;quot;post-date&#38;quot;&#38;gt;&#38;lt;span&#38;gt;&#38;lt;?php the_time(&#38;#39;d&#38;#39;)?&#38;gt;
                       &#38;lt;/span&#38;gt;&#38;lt;?php the_time(&#38;#39;M&#38;#39;) ?&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;h2&#38;gt;
                &#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot;
                title=&#38;quot;Permanent Link to &#38;lt;?php the_title_attribute();
                ?&#38;gt;&#38;quot;&#38;gt;
                &#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;
                &#38;lt;/h2&#38;gt;Author: &#38;lt;?php the_author() ?&#38;gt;
                &#38;amp;nbsp;//&#38;amp;nbsp;Category: &#38;lt;?php the_category(&#38;#39;, &#38;#39;) ?&#38;gt;
	       &#38;lt;/div&#38;gt;
	       &#38;lt;div class=&#38;quot;post-entry&#38;quot;&#38;gt;

                &#38;lt;?php if($Thumbnail !== &#38;#39;&#38;#39;) { ?&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php
                  the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php echo
                  get_post_meta($post-&#38;gt;ID, &#38;quot;Thumbnail&#38;quot;, true); ?&#38;gt;&#38;quot;
                  style=&#38;quot;width:125px; margin:15px auto 0 auto;&#38;quot;
                  alt=&#38;quot;&#38;lt;?php the_title(); ?&#38;gt; &#38;lt;?php _e(&#38;#39;thumbnail&#38;#39;);
                  ?&#38;gt;&#38;quot; class=&#38;quot;alignleft&#38;quot; /&#38;gt;
                  &#38;lt;?php } ?&#38;gt;&#38;lt;/a&#38;gt;

                  &#38;lt;?php the_meta(); ?&#38;gt;

                  &#38;lt;?php if($post-&#38;gt;post_excerpt) :the_excerpt();?&#38;gt;
                  &#38;lt;center&#38;gt;&#38;lt;h4&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;&#38;quot;
                 rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;Read &#38;lt;?php the_title();?&#38;gt;&#38;quot;&#38;gt;Read
                  &#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h4&#38;gt;&#38;lt;/a&#38;gt; &#38;lt;/center&#38;gt;»

                  &#38;lt;?php else:the_content();endif;?&#38;gt;

                  &#38;lt;center&#38;gt;&#38;lt;h3&#38;gt;&#38;lt;?php link_pages(&#38;#39;&#38;#39;); ?&#38;gt;&#38;lt;/h3&#38;gt;&#38;lt;/center&#38;gt;

		 &#38;lt;/div&#38;gt;

		 &#38;lt;div class=&#38;quot;post-info&#38;quot;&#38;gt;
		   &#38;lt;?php comments_popup_link(&#38;#39;Comments (0)&#38;#39;, &#38;#39;Comment
                    (1)&#38;#39;, &#38;#39;Comments (%)&#38;#39;); ?&#38;gt; &#38;amp;nbsp;// &#38;amp;nbsp;&#38;lt;a
                    href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;#respond&#38;quot;&#38;gt;Add
                    Comment&#38;lt;/a&#38;gt;
		 &#38;lt;/div&#38;gt;
		&#38;lt;/div&#38;gt;
		&#38;lt;!-- /Post --&#38;gt;
		&#38;lt;?php endwhile; ?&#38;gt;
		&#38;lt;!-- Navigation --&#38;gt;
	     &#38;lt;div class=&#38;quot;navigation&#38;quot;&#38;gt;
	     &#38;lt;div class=&#38;quot;navigation-previous&#38;quot;&#38;gt;&#38;lt;?php
             next_posts_link(&#38;#39;&#38;amp;laquo; Previous Entries&#38;#39;) ?&#38;gt;&#38;lt;/div&#38;gt;
             &#38;lt;div class=&#38;quot;navigation-next&#38;quot;&#38;gt;&#38;lt;?php
              previous_posts_link(&#38;#39;Next Entries &#38;amp;raquo;&#38;#39;) ?&#38;gt;&#38;lt;/div&#38;gt;
			&#38;lt;/div&#38;gt;
			&#38;lt;!-- /Navigation --&#38;gt;
			&#38;lt;?php else : ?&#38;gt;
			&#38;lt;!-- Post --&#38;gt;
			&#38;lt;div class=&#38;quot;post&#38;quot;&#38;gt;
				&#38;lt;div class=&#38;quot;post-title&#38;quot;&#38;gt;
					&#38;lt;h2&#38;gt;Not Found&#38;lt;/h2&#38;gt;
				&#38;lt;/div&#38;gt;
				&#38;lt;div class=&#38;quot;post-entry&#38;quot;&#38;gt;
					Sorry, but you are looking for
                                 something that isn&#38;#39;t here.

				&#38;lt;/div&#38;gt;
			&#38;lt;/div&#38;gt;
			&#38;lt;!-- /Post --&#38;gt;
			&#38;lt;?php endif; ?&#38;gt;

			&#38;lt;div class=&#38;quot;clear&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;

		&#38;lt;/div&#38;gt;
		&#38;lt;!-- /Content --&#38;gt;

&#38;lt;?php get_footer(); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>nekobaby on "[Plugin: Thumbnail For Excerpts] Place IMG after Meta, Not Excerpt?"</title>
<link>http://wordpress.org/support/topic/212573#post-883041</link>
<pubDate>Fri, 24 Oct 2008 02:37:40 +0000</pubDate>
<dc:creator>nekobaby</dc:creator>
<guid isPermaLink="false">883041@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is there anyway to alter the coding so that the image will show up after &#60;strong&#62;the_meta&#60;/strong&#62;? My excerpts spit out information in the following coding&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php the_meta(); ?&#38;gt;

&#38;lt;?php if($post-&#38;gt;post_excerpt) :
 the_excerpt(); ?&#38;gt;
&#38;lt;center&#38;gt;
&#38;lt;h4&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot;
title=&#38;quot;Read &#38;lt;?php the_title(); ?&#38;gt;&#38;quot;&#38;gt;
Read &#38;lt;?php the_title(); ?&#38;gt;
&#38;lt;/h4&#38;gt;&#38;lt;/a&#38;gt; &#38;lt;/center&#38;gt;»
&#38;lt;?php else:
 the_content();
 endif;
 ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So essentially, I'm popping meta info before my excerpt and I want to pull a thumbnail next to that meta info. This is what I'm going for...&#60;br /&#62;
----------------------------------------------------------&#60;br /&#62;
DATE TITLE CATEGORY, ETC&#60;/p&#62;
&#60;p&#62;Status: here&#60;br /&#62;
Genre: info here  -------------------------&#38;gt;  &#124; image &#124;&#60;br /&#62;
Rating: info here                         &#60;/p&#62;
&#60;p&#62;EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT EXCERPT&#60;br /&#62;
-----------------------------------------------------------&#60;br /&#62;
Any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>wondercore on "[Plugin: Thumbnail For Excerpts] Not work'n in WPMU"</title>
<link>http://wordpress.org/support/topic/207756#post-870562</link>
<pubDate>Mon, 06 Oct 2008 18:42:16 +0000</pubDate>
<dc:creator>wondercore</dc:creator>
<guid isPermaLink="false">870562@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've the same problem !
&#60;/p&#62;</description>
</item>
<item>
<title>driano on "[Plugin: Thumbnail For Excerpts] Not work'n in WPMU"</title>
<link>http://wordpress.org/support/topic/207756#post-866860</link>
<pubDate>Wed, 01 Oct 2008 18:45:02 +0000</pubDate>
<dc:creator>driano</dc:creator>
<guid isPermaLink="false">866860@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I think this plugin is not compatible with wordpress Mu , i try but it not works =/&#60;/p&#62;
&#60;p&#62;any solution for WPMU ?
&#60;/p&#62;</description>
</item>
<item>
<title>etruel on "[Plugin: Thumbnail For Excerpts] image thumbnail create fail"</title>
<link>http://wordpress.org/support/topic/202680#post-849936</link>
<pubDate>Wed, 10 Sep 2008 14:39:56 +0000</pubDate>
<dc:creator>etruel</dc:creator>
<guid isPermaLink="false">849936@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I disagree&#60;br /&#62;
imageshack.us, banners, and there are many other things that are life for the soul and the bandwidth ;)&#60;br /&#62;
but in these case the another site its mine, too.&#60;br /&#62;
I'm deactivate again the thumbnail creation and the warnings still remain...&#60;br /&#62;
enjoy
&#60;/p&#62;</description>
</item>
<item>
<title>mercime on "[Plugin: Thumbnail For Excerpts] image thumbnail create fail"</title>
<link>http://wordpress.org/support/topic/202680#post-849459</link>
<pubDate>Wed, 10 Sep 2008 00:14:03 +0000</pubDate>
<dc:creator>mercime</dc:creator>
<guid isPermaLink="false">849459@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hotlinking is bad for the soul.
&#60;/p&#62;</description>
</item>
<item>
<title>etruel on "[Plugin: Thumbnail For Excerpts] image thumbnail create fail"</title>
<link>http://wordpress.org/support/topic/202680#post-849219</link>
<pubDate>Tue, 09 Sep 2008 19:10:50 +0000</pubDate>
<dc:creator>etruel</dc:creator>
<guid isPermaLink="false">849219@http://wordpress.org/support/</guid>
<description>&#60;p&#62;When the image is hotlinked of another site, the thumbnail create fail.&#60;br /&#62;
thanks for the plugin&#60;br /&#62;
Regards&#60;br /&#62;
etruel&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Warning: imagecreatefromjpeg(/***/***/html/***/&#60;strong&#62;&#60;a href=&#34;http://www.anothersite.com&#34; rel=&#34;nofollow&#34;&#62;http://www.anothersite.com&#60;/a&#62;&#60;/strong&#62;/images/logo.jpg) [function.imagecreatefromjpeg]: failed to open stream: No such file or directory in ***/wp-content/plugins/thumbnail-for-excerpts/thumbnailforexcerpts.php on line 124&#60;/p&#62;
&#60;p&#62;Warning: imagesx(): supplied argument is not a valid Image resource in ***/wp-content/plugins/thumbnail-for-excerpts/thumbnailforexcerpts.php on line 125&#60;/p&#62;
&#60;p&#62;Warning: imagesy(): supplied argument is not a valid Image resource in ***/wp-content/plugins/thumbnail-for-excerpts/thumbnailforexcerpts.php on line 125
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/thumbnail-for-excerpts/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/thumbnail-for-excerpts/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
