<?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: How To Use WordPress Excerpts On Your Blog Homepage</title>
	<atom:link href="http://tweeaks.com/wordpress/how-to-using-wordpress-excerpts/feed/" rel="self" type="application/rss+xml" />
	<link>http://tweeaks.com/wordpress/how-to-using-wordpress-excerpts/</link>
	<description>more than just eye popping designs</description>
	<lastBuildDate>Tue, 07 Sep 2010 23:03:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: 2.5 Ways To Show Category Images As Post Thumbnails &#124; New2Wp</title>
		<link>http://tweeaks.com/wordpress/how-to-using-wordpress-excerpts/comment-page-1/#comment-1605</link>
		<dc:creator>2.5 Ways To Show Category Images As Post Thumbnails &#124; New2Wp</dc:creator>
		<pubDate>Mon, 05 Apr 2010 14:02:34 +0000</pubDate>
		<guid isPermaLink="false">http://tweeaks.com/?p=1646#comment-1605</guid>
		<description>[...] fields if you would rather do this. I quickly go over how to use Wordpress excerpts below, but here is a more detailed explanation of using excerpts if you need [...]</description>
		<content:encoded><![CDATA[<p>[...] fields if you would rather do this. I quickly go over how to use WordPress excerpts below, but here is a more detailed explanation of using excerpts if you need [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jaredwilli</title>
		<link>http://tweeaks.com/wordpress/how-to-using-wordpress-excerpts/comment-page-1/#comment-1604</link>
		<dc:creator>jaredwilli</dc:creator>
		<pubDate>Mon, 05 Apr 2010 05:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://tweeaks.com/?p=1646#comment-1604</guid>
		<description>Update to this code for showing default image if no post image exists. 
 
I don&#039;t remember if I tested the above code or not, but here is another way to show a default image, if you don&#039;t have one for a post. 
 
&lt;?php $thumbnail = get_post_meta($post-&gt;ID, &#039;thumbnail&#039;, true); if ($thumbnail) { ?&gt; 
&lt;img src=&quot;&lt;?php echo get_post_meta($post-&gt;ID, &quot;thumbnail&quot;, true); ?&gt;&quot; alt=&quot;&lt;?php the_title(); ?&gt;&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot; /&gt; 
&lt;?php } else { ?&gt; 
&lt;img src=&quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/default.jpg&quot;  alt=&quot;&lt;?php the_title(); ?&gt;&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot; /&gt; 
&lt;?php } ?&gt; 
 
This i know works, for sure.&lt;/img&gt;&lt;/img&gt; </description>
		<content:encoded><![CDATA[<p>Update to this code for showing default image if no post image exists. </p>
<p>I don&#039;t remember if I tested the above code or not, but here is another way to show a default image, if you don&#039;t have one for a post. </p>
<p>&lt;?php $thumbnail = get_post_meta($post-&gt;ID, &#039;thumbnail&#039;, true); if ($thumbnail) { ?&gt;<br />
&lt;img src=&quot;&lt;?php echo get_post_meta($post-&gt;ID, &quot;thumbnail&quot;, true); ?&gt;&quot; alt=&quot;&lt;?php the_title(); ?&gt;&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot; /&gt;<br />
&lt;?php } else { ?&gt;<br />
&lt;img src=&quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/default.jpg&quot;  alt=&quot;&lt;?php the_title(); ?&gt;&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot; /&gt;<br />
&lt;?php } ?&gt; </p>
<p>This i know works, for sure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jaredwilli</title>
		<link>http://tweeaks.com/wordpress/how-to-using-wordpress-excerpts/comment-page-1/#comment-1602</link>
		<dc:creator>jaredwilli</dc:creator>
		<pubDate>Thu, 01 Apr 2010 16:54:21 +0000</pubDate>
		<guid isPermaLink="false">http://tweeaks.com/?p=1646#comment-1602</guid>
		<description>You could add a div to the_excerpt() for example: 
 
&lt;div id=&quot;excerpt&quot;&gt; 
&lt;?php the_excerpt(); ?&gt; 
&lt;/div&gt; 
 
Then in your stylesheet you could style it. 
#excerpt { color: blue; } 
#excerpt img { float: right; margin-left: 10px; }  
 
or something like that. </description>
		<content:encoded><![CDATA[<p>You could add a div to the_excerpt() for example: </p>
<p>&lt;div id=&quot;excerpt&quot;&gt;<br />
&lt;?php the_excerpt(); ?&gt;<br />
&lt;/div&gt; </p>
<p>Then in your stylesheet you could style it.<br />
#excerpt { color: blue; }<br />
#excerpt img { float: right; margin-left: 10px; }  </p>
<p>or something like that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nikbanks</title>
		<link>http://tweeaks.com/wordpress/how-to-using-wordpress-excerpts/comment-page-1/#comment-1601</link>
		<dc:creator>nikbanks</dc:creator>
		<pubDate>Thu, 01 Apr 2010 04:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://tweeaks.com/?p=1646#comment-1601</guid>
		<description>this was extremely helpful but how would you go about styling the excerpt by adding css to it. and how would i be able to align the picture either to the left or right of the excerpt itself. Other than that this helped me immensely. </description>
		<content:encoded><![CDATA[<p>this was extremely helpful but how would you go about styling the excerpt by adding css to it. and how would i be able to align the picture either to the left or right of the excerpt itself. Other than that this helped me immensely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rose Varela</title>
		<link>http://tweeaks.com/wordpress/how-to-using-wordpress-excerpts/comment-page-1/#comment-901</link>
		<dc:creator>Rose Varela</dc:creator>
		<pubDate>Sun, 13 Dec 2009 14:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://tweeaks.com/?p=1646#comment-901</guid>
		<description>Hello,

I&#039;d like to know how could I implement this excerpts showing only on the category and archive pages, since I&#039;d like to change my Wordpress theme, but the new theme doesn&#039;t have these options as the default.

Thank you for your time.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I'd like to know how could I implement this excerpts showing only on the category and archive pages, since I'd like to change my WordPress theme, but the new theme doesn't have these options as the default.</p>
<p>Thank you for your time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
