<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WP Garage &#187; posts</title>
	<atom:link href="http://wpgarage.com/tag/posts/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Thu, 08 Jul 2010 15:11:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Publishing WordPress posts in two columns</title>
		<link>http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/</link>
		<comments>http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 10:37:06 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[posts]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/</guid>
		<description><![CDATA[We&#8217;re currently building a site on Adii&#8217;s Premium Gazette WordPress theme (this is an affiliate link). In my opinion, it&#8217;s an awesome theme particularly because of the design. However, we installed it on the client&#8217;s server of choice, and the posts on the homepage just wouldn&#8217;t update. We tested it out on different servers, as [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re currently building a site on <a href="https://www.e-junkie.com/ecom/gb.php?ii=85148&amp;c=ib&amp;aff=16393&amp;ev=45d256fd22">Adii&#8217;s Premium Gazette WordPress theme</a> (this is an affiliate link). In my opinion, it&#8217;s an awesome theme particularly because of the design. However, we installed it on the client&#8217;s server of choice, and the posts on the homepage just wouldn&#8217;t update. We tested it out on different servers, as well as on the client&#8217;s server without any plugins or changes, and it worked on other servers but would not cooperate on the client&#8217;s server.</p>
<p>The home page of this WordPress theme has two columns of posts. This is a really handy layout, but we realized that the code being used to create this layout was causing all the problems. So we needed to find another solution.</p>
<p>cre8d design has a tutorial on <a href="http://www.cre8d-design.com/blog/2008/03/01/how-to-organize-posts-into-two-side-by-side-columns-in-wordpress/" title="How to organize posts into two side-by-side columns in Wordpress">how to organize posts into two side-by-side columns in WordPress</a>. It&#8217;s based on adding  a &#8220;switch&#8221; that tells WordPress if a post should appear in the first column or the second column. Basically, the code is saying the following:</p>
<p><em>Are we in the first column?<br />
Yes: Move to the second column.<br />
No: Move to the first column.</em></p>
<p>The code calls styles from your style sheet that tell the left column to float left, and the right column to float right.</p>
<p>cre8d&#8217;s <a href="http://www.cre8d-design.com/demo/" title="cre8d demo page for two column layout">demo page for this technique:</a></p>
<p><img src="http://wpgarage.com/wp-content/uploads/2008/03/posts-two-columns-wordpress.png" alt="Posts in two columns in WordPress" /></p>
<p>We also needed to exclude two categories from appearing on the homepage, so here&#8217;s a simplified version of the final code we used to replace Adii&#8217;s code in his default.php file:</p>
<pre>&lt;div class="box"&gt;&lt;?php query_posts('showposts=4'); ?&gt;&lt;?php $hol = 1; ?&gt;

&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;

&lt;?php if (in_category('3')) continue; ?&gt;

&lt;?php if (in_category('4')) continue; ?&gt;

&lt;?php if ($hol == 1) echo "&lt;div class=\"row\"&gt;"; ?&gt;

&lt;div class="post hol&lt;?php echo $hol;?&gt;" id="post-&lt;?

php the_ID(); ?&gt;"&gt;

&lt;?php if ( get_post_meta($post-&gt;ID, 'thumb', true) )

{ ?&gt; &lt;!-- DISPLAYS THE IMAGE URL SPECIFIED

IN THE CUSTOM FIELD --&gt;

&lt;img src="&lt;?php echo get_post_meta($post-&gt;ID, "thumb",

$single = true); ?&gt;" alt="" /&gt;

&lt;?php } else { ?&gt; &lt;!-- DISPLAY THE DEFAULT IMAGE, IF CUSTOM

FIELD HAS NOT BEEN COMPLETED --&gt;

&lt;img src="&lt;?php bloginfo('template_directory'); ?&gt;

/images/no-img-thumb.jpg" alt="" /&gt;

&lt;?php } ?&gt;

&lt;h2&gt;&lt;a title="Permanent Link to &lt;?php the_title(); ?&gt;"

href="&lt;?php the_permalink() ?&gt;" rel="bookmark"&gt;</pre>
<pre>&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;&lt;?php the_excerpt(); ?&gt;&lt;/p&gt;

&lt;?php if ($hol == 1) echo "&lt;/div&gt;";

(($hol==1) ? $hol=2 : $hol=1); ?&gt;

&lt;/div&gt;&lt;!--/post--&gt;

&lt;?php endwhile; ?&gt;

&lt;?php endif; ?&gt;</pre>
<p>The following styles need to be added to your style sheet so that the columns float left and right:</p>
<p><code>.row { clear: both; }<br />
.hol1 { width: 200px; float: left; padding: 0 10px; }<br />
.hol2 { width: 200px; float: right;  padding: 0 10px; }</code></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns&amp;desc=We%27re%20currently%20building%20a%20site%20on%20Adii%27s%20Premium%20Gazette%20WordPress%20theme%20%28this%20is%20an%20affiliate%20link%29.%20In%20my%20opinion%2C%20it%27s%20an%20awesome%20theme%20particularly%20because%20of%20the%20design.%20However%2C%20we%20installed%20it%20on%20the%20client%27s%20server%20of%20choice%2C%20and%20the%20posts%20on%20the%20homepage%20just%20wouldn%27t%20update.%20We%20tested%20it%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;t=Publishing+WordPress+posts+in+two+columns" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Publishing+WordPress+posts+in+two+columns&amp;link=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Publishing+WordPress+posts+in+two+columns&amp;body=Link: http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%27re%20currently%20building%20a%20site%20on%20Adii%27s%20Premium%20Gazette%20WordPress%20theme%20%28this%20is%20an%20affiliate%20link%29.%20In%20my%20opinion%2C%20it%27s%20an%20awesome%20theme%20particularly%20because%20of%20the%20design.%20However%2C%20we%20installed%20it%20on%20the%20client%27s%20server%20of%20choice%2C%20and%20the%20posts%20on%20the%20homepage%20just%20wouldn%27t%20update.%20We%20tested%20it%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns&amp;srcUrl=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;srcTitle=Publishing+WordPress+posts+in+two+columns&amp;snippet=We%27re%20currently%20building%20a%20site%20on%20Adii%27s%20Premium%20Gazette%20WordPress%20theme%20%28this%20is%20an%20affiliate%20link%29.%20In%20my%20opinion%2C%20it%27s%20an%20awesome%20theme%20particularly%20because%20of%20the%20design.%20However%2C%20we%20installed%20it%20on%20the%20client%27s%20server%20of%20choice%2C%20and%20the%20posts%20on%20the%20homepage%20just%20wouldn%27t%20update.%20We%20tested%20it%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns&amp;summary=We%27re%20currently%20building%20a%20site%20on%20Adii%27s%20Premium%20Gazette%20WordPress%20theme%20%28this%20is%20an%20affiliate%20link%29.%20In%20my%20opinion%2C%20it%27s%20an%20awesome%20theme%20particularly%20because%20of%20the%20design.%20However%2C%20we%20installed%20it%20on%20the%20client%27s%20server%20of%20choice%2C%20and%20the%20posts%20on%20the%20homepage%20just%20wouldn%27t%20update.%20We%20tested%20it%20&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Publishing+WordPress+posts+in+two+columns&amp;url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns&amp;selection=We%27re%20currently%20building%20a%20site%20on%20Adii%27s%20Premium%20Gazette%20WordPress%20theme%20%28this%20is%20an%20affiliate%20link%29.%20In%20my%20opinion%2C%20it%27s%20an%20awesome%20theme%20particularly%20because%20of%20the%20design.%20However%2C%20we%20installed%20it%20on%20the%20client%27s%20server%20of%20choice%2C%20and%20the%20posts%20on%20the%20homepage%20just%20wouldn%27t%20update.%20We%20tested%20it%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/&amp;title=Publishing+WordPress+posts+in+two+columns" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/+&quot;Publishing+WordPress+posts+in+two+columns&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fcode-snippets%2Fpublishing-wordpress-posts-in-two-columns%2F&amp;t=Publishing+WordPress+posts+in+two+columns" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Publishing+WordPress+posts+in+two+columns+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Publishing%20WordPress%20posts%20in%20two%20columns%22&amp;body=Link: http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%27re%20currently%20building%20a%20site%20on%20Adii%27s%20Premium%20Gazette%20WordPress%20theme%20%28this%20is%20an%20affiliate%20link%29.%20In%20my%20opinion%2C%20it%27s%20an%20awesome%20theme%20particularly%20because%20of%20the%20design.%20However%2C%20we%20installed%20it%20on%20the%20client%27s%20server%20of%20choice%2C%20and%20the%20posts%20on%20the%20homepage%20just%20wouldn%27t%20update.%20We%20tested%20it%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/code-snippets/publishing-wordpress-posts-in-two-columns/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>My posts are getting swallowed up by WordPress</title>
		<link>http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/</link>
		<comments>http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 08:06:50 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[News & Views]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[posts]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/</guid>
		<description><![CDATA[Over the past few days, I have written two posts on two different WordPress self-hosted blogs that have disappeared when I pressed save. I couldn&#8217;t retrieve them.
I wrote one of the posts straight in WordPress&#8217; text editor, and the other one I wrote in Windows Live Writer. You would think I could go back and [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past few days, I have written two posts on two different WordPress self-hosted blogs that have disappeared when I pressed save. I couldn&#8217;t retrieve them.</p>
<p>I wrote one of the posts straight in WordPress&#8217; text editor, and the other one I wrote in Windows Live Writer. You would think I could go back and get the post written in Live Writer, but once I uploaded the post from Windows Live Writer to WordPress and saved it there, the local Live Writer version became connected to my online version, so that when I tried to view the draft in Windows Live Writer, I got the online blank version.</p>
<p>Has anyone had this happen to them? Anyone know how this can be fixed?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress&amp;desc=Over%20the%20past%20few%20days%2C%20I%20have%20written%20two%20posts%20on%20two%20different%20WordPress%20self-hosted%20blogs%20that%20have%20disappeared%20when%20I%20pressed%20save.%20I%20couldn%27t%20retrieve%20them.%0A%0AI%20wrote%20one%20of%20the%20posts%20straight%20in%20WordPress%27%20text%20editor%2C%20and%20the%20other%20one%20I%20wrote%20in%20Windows%20Live%20Writer.%20You%20would%20think%20I%20could%20g" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;t=My+posts+are+getting+swallowed+up+by+WordPress" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=My+posts+are+getting+swallowed+up+by+WordPress&amp;link=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=My+posts+are+getting+swallowed+up+by+WordPress&amp;body=Link: http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Over%20the%20past%20few%20days%2C%20I%20have%20written%20two%20posts%20on%20two%20different%20WordPress%20self-hosted%20blogs%20that%20have%20disappeared%20when%20I%20pressed%20save.%20I%20couldn%27t%20retrieve%20them.%0A%0AI%20wrote%20one%20of%20the%20posts%20straight%20in%20WordPress%27%20text%20editor%2C%20and%20the%20other%20one%20I%20wrote%20in%20Windows%20Live%20Writer.%20You%20would%20think%20I%20could%20g" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress&amp;srcUrl=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;srcTitle=My+posts+are+getting+swallowed+up+by+WordPress&amp;snippet=Over%20the%20past%20few%20days%2C%20I%20have%20written%20two%20posts%20on%20two%20different%20WordPress%20self-hosted%20blogs%20that%20have%20disappeared%20when%20I%20pressed%20save.%20I%20couldn%27t%20retrieve%20them.%0A%0AI%20wrote%20one%20of%20the%20posts%20straight%20in%20WordPress%27%20text%20editor%2C%20and%20the%20other%20one%20I%20wrote%20in%20Windows%20Live%20Writer.%20You%20would%20think%20I%20could%20g" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress&amp;summary=Over%20the%20past%20few%20days%2C%20I%20have%20written%20two%20posts%20on%20two%20different%20WordPress%20self-hosted%20blogs%20that%20have%20disappeared%20when%20I%20pressed%20save.%20I%20couldn%27t%20retrieve%20them.%0A%0AI%20wrote%20one%20of%20the%20posts%20straight%20in%20WordPress%27%20text%20editor%2C%20and%20the%20other%20one%20I%20wrote%20in%20Windows%20Live%20Writer.%20You%20would%20think%20I%20could%20g&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=My+posts+are+getting+swallowed+up+by+WordPress&amp;url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress&amp;selection=Over%20the%20past%20few%20days%2C%20I%20have%20written%20two%20posts%20on%20two%20different%20WordPress%20self-hosted%20blogs%20that%20have%20disappeared%20when%20I%20pressed%20save.%20I%20couldn%27t%20retrieve%20them.%0A%0AI%20wrote%20one%20of%20the%20posts%20straight%20in%20WordPress%27%20text%20editor%2C%20and%20the%20other%20one%20I%20wrote%20in%20Windows%20Live%20Writer.%20You%20would%20think%20I%20could%20g" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/&amp;title=My+posts+are+getting+swallowed+up+by+WordPress" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/+&quot;My+posts+are+getting+swallowed+up+by+WordPress&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fnews-views%2Fmy-posts-are-getting-swallowed-up-by-wordpress%2F&amp;t=My+posts+are+getting+swallowed+up+by+WordPress" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=My+posts+are+getting+swallowed+up+by+WordPress+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22My%20posts%20are%20getting%20swallowed%20up%20by%20WordPress%22&amp;body=Link: http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Over%20the%20past%20few%20days%2C%20I%20have%20written%20two%20posts%20on%20two%20different%20WordPress%20self-hosted%20blogs%20that%20have%20disappeared%20when%20I%20pressed%20save.%20I%20couldn%27t%20retrieve%20them.%0A%0AI%20wrote%20one%20of%20the%20posts%20straight%20in%20WordPress%27%20text%20editor%2C%20and%20the%20other%20one%20I%20wrote%20in%20Windows%20Live%20Writer.%20You%20would%20think%20I%20could%20g" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/news-views/my-posts-are-getting-swallowed-up-by-wordpress/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Using PHP to alternate background colors for comments or posts in WordPress</title>
		<link>http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/</link>
		<comments>http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 15:05:10 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[posts]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/</guid>
		<description><![CDATA[Some blogs have alternating background colors for their comments and posts, i.e. a green background for every even comment and post, and a grey background for every odd comment and post. How do they do that?
Alternating Comments Styles
To alternate comments, add the following code to your comments.php template file, under where it says &#60;?php if [...]]]></description>
			<content:encoded><![CDATA[<p>Some blogs have alternating background colors for their comments and posts, i.e. a green background for every even comment and post, and a grey background for every odd comment and post. How do they do that?</p>
<p><strong>Alternating Comments Styles</strong></p>
<p>To alternate comments, add the following code to your comments.php template file, under where it says <code>&lt;?php if ( $comments ) : ?&gt;</code>:</p>
<p><code>&lt;ul&gt;<br />
&lt;?php $i = 0; ?&gt;<br />
&lt;?php foreach ($comments as $comment) : ?&gt;<br />
&lt;?php $i++; ?&gt;<br />
&lt;li id="comment-&lt;?php comment_ID() ?&gt;"&lt;?php if($i&amp;1) { echo 'class="odd"';} else {echo 'class="even"';} ?&gt;&gt;</code></p>
<p>Then, create a style called .even and a style called .odd in your style.css file. Give each style a different background color, like this (but change the colors to what you want):</p>
<p><code>.odd {<br />
background-color: #fcf9fc; }</code></p>
<p><code>.even {<br />
background-color: #616161; }</code></p>
<p>This information is from the following WordPress support topic:</p>
<p><a href="http://wordpress.org/support/topic/108400">How to alternate background colors of comments posted on blog?</a></p>
<p><strong>Alternating Post Styles</strong></p>
<p>Adam Brown has a <a href="http://adambrown.info/b/widgets/easy-php-tutorial-for-wordpress-users/posts-that-have-alternating-colors/" title="How do I make my posts (or anything else) have alternating colors?">tutorial on his site for creating alternating styles for posts</a>. Basically, you do the following:</p>
<ol>
<li>Right before the loop begins, add the following code:<br />
<code>&lt;?php $odd_or_even = 'odd'; ?&gt;</code></li>
<li>Right after the loop, there will be a div. Let&#8217;s say it&#8217;s called class=&#8221;post&#8221;. Change it to<br />
<code>&lt;div class="post &lt;?php echo $odd_or_even; ?&gt;"&gt;</code>, and then add the following piece of code on the next line: <code>&lt;?php $odd_or_even = ('odd'==$odd_or_even) ? 'even' : 'odd'; ?&gt;</code></li>
<li>Now, create .odd and .even styles in your style.css.</li>
</ol>
<p>Adam&#8217;s site has another really useful <a href="http://adambrown.info/b/widgets/easy-php-tutorial-for-wordpress-users/">PHP Tutorial for Wordpress Users</a>, which is good for those of us who aren&#8217;t going to become PHP gurus, but would like to know enough PHP to extend our WordPress sites.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress&amp;desc=Some%20blogs%20have%20alternating%20background%20colors%20for%20their%20comments%20and%20posts%2C%20i.e.%20a%20green%20background%20for%20every%20even%20comment%20and%20post%2C%20and%20a%20grey%20background%20for%20every%20odd%20comment%20and%20post.%20How%20do%20they%20do%20that%3F%0A%0AAlternating%20Comments%20Styles%0A%0ATo%20alternate%20comments%2C%20add%20the%20following%20code%20to%20your%20comments" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;t=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress&amp;link=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress&amp;body=Link: http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Some%20blogs%20have%20alternating%20background%20colors%20for%20their%20comments%20and%20posts%2C%20i.e.%20a%20green%20background%20for%20every%20even%20comment%20and%20post%2C%20and%20a%20grey%20background%20for%20every%20odd%20comment%20and%20post.%20How%20do%20they%20do%20that%3F%0A%0AAlternating%20Comments%20Styles%0A%0ATo%20alternate%20comments%2C%20add%20the%20following%20code%20to%20your%20comments" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress&amp;srcUrl=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;srcTitle=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress&amp;snippet=Some%20blogs%20have%20alternating%20background%20colors%20for%20their%20comments%20and%20posts%2C%20i.e.%20a%20green%20background%20for%20every%20even%20comment%20and%20post%2C%20and%20a%20grey%20background%20for%20every%20odd%20comment%20and%20post.%20How%20do%20they%20do%20that%3F%0A%0AAlternating%20Comments%20Styles%0A%0ATo%20alternate%20comments%2C%20add%20the%20following%20code%20to%20your%20comments" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress&amp;summary=Some%20blogs%20have%20alternating%20background%20colors%20for%20their%20comments%20and%20posts%2C%20i.e.%20a%20green%20background%20for%20every%20even%20comment%20and%20post%2C%20and%20a%20grey%20background%20for%20every%20odd%20comment%20and%20post.%20How%20do%20they%20do%20that%3F%0A%0AAlternating%20Comments%20Styles%0A%0ATo%20alternate%20comments%2C%20add%20the%20following%20code%20to%20your%20comments&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress&amp;url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress&amp;selection=Some%20blogs%20have%20alternating%20background%20colors%20for%20their%20comments%20and%20posts%2C%20i.e.%20a%20green%20background%20for%20every%20even%20comment%20and%20post%2C%20and%20a%20grey%20background%20for%20every%20odd%20comment%20and%20post.%20How%20do%20they%20do%20that%3F%0A%0AAlternating%20Comments%20Styles%0A%0ATo%20alternate%20comments%2C%20add%20the%20following%20code%20to%20your%20comments" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/&amp;title=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/+&quot;Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fcode-snippets%2Fusing-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress%2F&amp;t=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Using+PHP+to+alternate+background+colors+for+comments+or+posts+in+WordPress+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Using%20PHP%20to%20alternate%20background%20colors%20for%20comments%20or%20posts%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Some%20blogs%20have%20alternating%20background%20colors%20for%20their%20comments%20and%20posts%2C%20i.e.%20a%20green%20background%20for%20every%20even%20comment%20and%20post%2C%20and%20a%20grey%20background%20for%20every%20odd%20comment%20and%20post.%20How%20do%20they%20do%20that%3F%0A%0AAlternating%20Comments%20Styles%0A%0ATo%20alternate%20comments%2C%20add%20the%20following%20code%20to%20your%20comments" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/code-snippets/using-php-to-alternate-background-colors-for-comments-or-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Importing RSS feeds as posts in WordPress, and managing your twitter, facebook, tumblr and WordPress lives in one fell swoop</title>
		<link>http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/</link>
		<comments>http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 23:09:25 +0000</pubDate>
		<dc:creator>ManagingTeam</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/</guid>
		<description><![CDATA[I am constantly finding links that I think are not worth a whole post, but I would like to mention here anyways. So I wanted to find a quick and easy way to display short links that would become part of the blog stream, without causing clutter.
I also wanted to do this in a way [...]]]></description>
			<content:encoded><![CDATA[<p>I am constantly finding links that I think are not worth a whole post, but I would like to mention here anyways. So I wanted to find a quick and easy way to display short links that would become part of the blog stream, without causing clutter.</p>
<p>I also wanted to do this in a way that would make these links easily importable to other platforms besides WordPress, such as <a title="Twitter" href="http://twitter.com">Twitter</a> and in the <a title="facebook" href="http://facebook.com">facebook</a> status. I figured the best way to do this would be to dedicate an RSS feed to these short bits of information. I considered using <span id="lw_1197846618_0" class="yshortcuts">Twitter</span>, but decided against it because it adds my Twitter name to the beginning of every feed. facebook&#8217;s status isn&#8217;t so easy to export. So I chose <a title="Tumblr" href="http://tumblr.com">Tumblr</a>.</p>
<p>I hadn&#8217;t visited Tumblr for a while, and was pleasantly surprised by the new additions to this already useful service. Tumblr is like Twitter in that it gives you a platform for sending out short bits of information, and they have added the option of following other Tumblr users, but the difference is that Tumblr allows you to post a wider range of types of content, such as photos, videos and audio, something Twitter doesn&#8217;t do. I guess people really like the bare-bones nature of Twitter, but I prefer Tumblr.</p>
<p>In any case, I got going with Tumblr and added a few posts. Then I had to find the right plugin or method for adding RSS feeds to this blog. I decided to go with <a title="WP-o-Matic" href="http://devthought.com/wp-o-matic-the-wordpress-rss-agreggator/">WP-o-Matic</a>.</p>
<p>WP-o-Matic is a bit tricky to set up, but it gives you a lot of features and options once you get it right. Here&#8217;s how you use it:</p>
<ol>
<li>Download and upload the directory under wp-content/plugins. Activate.</li>
<li>You have to follow four steps to set it up, including choosing a name for the feed and giving it a slug. One of the steps is checking whether your server is compatible with Simple Pie. Just click on the link, and it will open up a new page that will either congratulate you for being compatible, or curse you. Just kidding, I don&#8217;t know what happens if you&#8217;re not compatible.</li>
<li>You will have to set up a cron job. I&#8217;ve never done that before, but the plugin author has made it really easy. You are given a line of code to use. Log in to your Control Panel, and under Advanced you will see an icon called Cron jobs. Click on that, and choose Standard. Paste your code snippet into the box called Command to run, and click on Save Crontab. That should do the job.<br />
<strong>Update:</strong> If your cpanel looks different and asks for Common Settings, here&#8217;s what to do: The line of code the plugin gives you starts with stars and slashes.  Remove those and start from /usr/bin/curl&#8230;. etc. Fill in the rest like the screenshot below:<br />
<img class="alignnone size-full wp-image-667" title="cronjob" src="http://wpgarage.com/wp-content/uploads/2007/12/cronjob.png" alt="" width="428" height="314" /></li>
<li>Go back to the WP-o-Matic setup and press Submit.</li>
<li>A new menu appears under your standard WordPress menu.</li>
<li>Once you&#8217;ve completed those four steps, you can set up your first &#8220;campaign.&#8221; This is how WP-o-Matic refers to any incoming RSS stream. So click on Add Campaign.</li>
<li>You have five tabs at the top of the campaign: Basic, Feeds, Categories, Rewrite, and Options. You need to click on each, fill them out, and only once you&#8217;ve completed that, click Submit.</li>
<li>Under the Basic tab, enter the Title of your Campaign. Check the box next to Active, and give it a slug if you like.</li>
<li>Under the Feeds tab, you can enter as many feeds as you like.</li>
<li>Under the Categories tab, select the category under which you want this Campaign to appear on your blog. If you want to create a new one, you can do it right there by clicking on Quick Add.</li>
<li>The Rewrite tab allows you to swap words in your feed, or link specific words to a website. I&#8217;m sure that&#8217;s handy, but I ignored it.</li>
<li>Under the Options tab, you can choose to use a custom post template, set the frequency for how often the feeds should be checked, select whether images will be cached on your server or hotlinked from the other server (choose cached if you want to be a good citizen), select whether to use the date of the original feed, or the date when the feed was imported, whether to perform pingbacks, whether the post should be published automatically or saved as Private or a Draft, the name of the author, and whether to allow comments or pings.</li>
<li>Click Submit.</li>
</ol>
<p>That&#8217;s it. I think I may want to suppress this category from appearing on the blog home page, and have it only appear in its own section in the sidebar. I also think I&#8217;ll set the feed to automatically be saved as a draft so that I can add tags and other stuff to each tidbit for easier sorting and finding later.</p>
<p>Now I can use <a title="twitterfeed" href="http://www.twitterfeed.com/">twitterfeed</a> to have my Tumblr posts automatically published by my Twitter account. And the <a title="Twitter facebook" href="http://apps.facebook.com/twitter/">Twitter facebook app</a> imports my tweets into my facebook status. Social media happiness! (Or ridiculousness, depending on how you look at it.)</p>
<p>I&#8217;d really like to hear what you think, and if you have any other ways for importing RSS feeds into your WordPress blog, whether as posts or in the sidebar. I suspect there is an easier way since sploggers are doing this kind of thing all the time.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop&amp;desc=I%20am%20constantly%20finding%20links%20that%20I%20think%20are%20not%20worth%20a%20whole%20post%2C%20but%20I%20would%20like%20to%20mention%20here%20anyways.%20So%20I%20wanted%20to%20find%20a%20quick%20and%20easy%20way%20to%20display%20short%20links%20that%20would%20become%20part%20of%20the%20blog%20stream%2C%20without%20causing%20clutter.%0D%0A%0D%0AI%20also%20wanted%20to%20do%20this%20in%20a%20way%20that%20would%20make%20th" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;t=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop&amp;link=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop&amp;body=Link: http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20am%20constantly%20finding%20links%20that%20I%20think%20are%20not%20worth%20a%20whole%20post%2C%20but%20I%20would%20like%20to%20mention%20here%20anyways.%20So%20I%20wanted%20to%20find%20a%20quick%20and%20easy%20way%20to%20display%20short%20links%20that%20would%20become%20part%20of%20the%20blog%20stream%2C%20without%20causing%20clutter.%0D%0A%0D%0AI%20also%20wanted%20to%20do%20this%20in%20a%20way%20that%20would%20make%20th" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop&amp;srcUrl=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;srcTitle=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop&amp;snippet=I%20am%20constantly%20finding%20links%20that%20I%20think%20are%20not%20worth%20a%20whole%20post%2C%20but%20I%20would%20like%20to%20mention%20here%20anyways.%20So%20I%20wanted%20to%20find%20a%20quick%20and%20easy%20way%20to%20display%20short%20links%20that%20would%20become%20part%20of%20the%20blog%20stream%2C%20without%20causing%20clutter.%0D%0A%0D%0AI%20also%20wanted%20to%20do%20this%20in%20a%20way%20that%20would%20make%20th" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop&amp;summary=I%20am%20constantly%20finding%20links%20that%20I%20think%20are%20not%20worth%20a%20whole%20post%2C%20but%20I%20would%20like%20to%20mention%20here%20anyways.%20So%20I%20wanted%20to%20find%20a%20quick%20and%20easy%20way%20to%20display%20short%20links%20that%20would%20become%20part%20of%20the%20blog%20stream%2C%20without%20causing%20clutter.%0D%0A%0D%0AI%20also%20wanted%20to%20do%20this%20in%20a%20way%20that%20would%20make%20th&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop&amp;url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop&amp;selection=I%20am%20constantly%20finding%20links%20that%20I%20think%20are%20not%20worth%20a%20whole%20post%2C%20but%20I%20would%20like%20to%20mention%20here%20anyways.%20So%20I%20wanted%20to%20find%20a%20quick%20and%20easy%20way%20to%20display%20short%20links%20that%20would%20become%20part%20of%20the%20blog%20stream%2C%20without%20causing%20clutter.%0D%0A%0D%0AI%20also%20wanted%20to%20do%20this%20in%20a%20way%20that%20would%20make%20th" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/&amp;title=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/+&quot;Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fplugins%2Fimporting-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop%2F&amp;t=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+tumblr+and+WordPress+lives+in+one+fell+swoop" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Importing+RSS+feeds+as+posts+in+WordPress%2C+and+managing+your+twitter%2C+facebook%2C+%5B..%5D+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Importing%20RSS%20feeds%20as%20posts%20in%20WordPress%2C%20and%20managing%20your%20twitter%2C%20facebook%2C%20tumblr%20and%20WordPress%20lives%20in%20one%20fell%20swoop%22&amp;body=Link: http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20am%20constantly%20finding%20links%20that%20I%20think%20are%20not%20worth%20a%20whole%20post%2C%20but%20I%20would%20like%20to%20mention%20here%20anyways.%20So%20I%20wanted%20to%20find%20a%20quick%20and%20easy%20way%20to%20display%20short%20links%20that%20would%20become%20part%20of%20the%20blog%20stream%2C%20without%20causing%20clutter.%0D%0A%0D%0AI%20also%20wanted%20to%20do%20this%20in%20a%20way%20that%20would%20make%20th" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/importing-rss-feeds-as-posts-in-wordpress-and-managing-your-twitter-facebook-tumblr-and-wordpress-lives-in-one-fell-swoop/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Giving each WordPress post a thumbnail, and display the thumbnail on the home page</title>
		<link>http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/</link>
		<comments>http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 18:25:13 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[custom fields]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[uploads]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/tips/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/</guid>
		<description><![CDATA[// 



You may encounter situations where you need to automatically display a thumbnail or image of some kind that will link to posts. Here&#8217;s an example of this kind of situation: you want to display recent posts from a certain category on your home page, with a thumbnail for each post and maybe the title [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left"><script type="text/javascript">// <![CDATA[
 google_ad_client = "pub-9020989590386566"; /* 200x200, created 6/14/10 */ google_ad_slot = "3727910436"; google_ad_width = 200; google_ad_height = 200;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></p>
</div>
<p>You may encounter situations where you need to automatically display a thumbnail or image of some kind that will link to posts. Here&#8217;s an example of this kind of situation: you want to display recent posts from a certain category on your home page, with a thumbnail for each post and maybe the title and an excerpt. Or, I recently had a client that had a box on their homepage for multimedia where they wanted an image to appear that would represent the latest post in the Media category and would link to that post. A link to this site is at the end of this post, so read on.</p>
<p>I found the solution in two amazing WordPress themes: <a href="http://www.darrenhoyt.com/2007/08/05/wordpress-magazine-theme-released/">Mimbo</a> and <a href="http://themasterplan.in/themes/the-morning-after/">The Morning After</a>. They both use thumbnails on their home page, and they do it by using WordPress&#8217; mysterious Custom Fields feature.</p>
<p>You need to be able to upload images to your server in order to do this. You can do this via FTP, but to make this as easy as possible for clients, I use the <a href="http://www.ilfilosofo.com/blog/old-style-upload/">Filosofo Old-Style Upload Plugin</a> which creates a link on your nav bar where you select files for uploading. But first you need to configure this plugin and select a folder where all uploads will be saved:</p>
<ol>
<li>Upload the plugin and activate it.</li>
<li>Go to Options &gt; Uploads.</li>
<li>Enter your destination directory. I think the best is to use your images folder in your theme folder so that any images you upload will be in an easily portable place. So the path could be something like /home/server/public_html/wp-content/themes/themefolder/images. The plugin will suggest a path, and it is usually right.</li>
<li>Enter the URI of the folder. It&#8217;s something like http://www.yoursite.com/wp-content/themes/themefolder/images.</li>
<li>You might as well up your maximum file size. I make it 500 kb.</li>
<li>Allowed file extensions: jpg, jpeg, gif, png, pdf &#8211; I add PDF and other types of files I think clients may want to upload.</li>
<li>Minimum level to upload: I leave it at 6 since I have no idea what this means.</li>
<li>Click Update Options.</li>
</ol>
<p>That&#8217;s done. Now for how to create a post with a thumbnail image.</p>
<ol>
<li>Create an image for your post with the right width and height. The size of the image depends only on the design of your site and where it is going to appear.</li>
<li>Go into the admin of your site. Click on Upload (it&#8217;s on the upper nav bar).</li>
<li>Select the file you are uploading, select No Thanks so it won&#8217;t create a thumbnail, give it a description (that&#8217;s good for Google) and click Upload File.</li>
<li>Once it&#8217;s uploaded it will show you the entire URL of the image. Note particularly the last part of the link where it says the name of your image, especially if there are any capitals in any part of the name. You will have to enter the exact file name in step 8.</li>
<li>Go to Create Posts. Enter your post and title as you wish. Make sure to select the category you have selected as the one that will appear with the thumbnails. Now scroll all the way down to the bottom of the screen where it says Custom Fields. Click on the plus button to expand it.</li>
<li>Enter the word Image (with a capital I) in the Key field.</li>
<li>In value, enter the exact name of the file you uploaded. For example picture.jpg or image.gif. Click Add Custom Field.</li>
<li>Save your post.</li>
</ol>
<p>Now we need the code that will make this thumbnail appear where you want it to appear. Following is the code for having a thumbnail appear with the title underneath it. This code is adapted from the <a href="http://www.darrenhoyt.com/2007/08/05/wordpress-magazine-theme-released/">Mimbo</a> theme, but the code in <a href="http://themasterplan.in/themes/the-morning-after/">The Morning After</a> is similar:</p>
<p><code>&lt;?php<br />
// this is where the Features module begins<br />
query_posts('showposts=1&amp;cat=199'); ?&gt; //change the showposts number to the number of posts that you want to appear, and change cat=199 to your category number, which you can find out by going to Manage &gt; Categories<br />
&lt;?php while (have_posts()) : the_post(); ?&gt;<br />
&lt;div class="thumbnails"&gt;&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title(); ?&gt;"&gt;&lt;img src="&lt;?php echo get_option('home'); ?&gt;/wp-content/themes/themefolder/images/&lt;?php<br />
// this is where the custom field prints images for each Feature<br />
$values = get_post_custom_values("Image"); echo $values[0]; ?&gt;" alt="" /&gt;&lt;/a&gt;<br />
&lt;p class="title"&gt;&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark"&gt;<br />
&lt;?php<br />
// this is where title of the Feature gets printed<br />
the_title(); ?&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;<br />
&lt;?php endwhile; ?&gt;</code></p>
<p>Wanna see an example? Check out <a href="http://israelnewsletter.com">this site</a>, scroll to the bottom and look at the left-most column that is called Media. That image there is a thumbnail that was uploaded and entered in the Custom Field of the post it links to.</p>
<p><em>Update Nov. 27, 2007: This post got a lot of comments here, and on <a title="WordPress post thumbnails" href="http://weblogtoolscollection.com/archives/2007/11/24/wordpress-post-thumbnails/">Weblog Tools Collection</a> who referred to it. Lots of people gave more recommendations on how to manage thumbnails with custom fields and/or plugins, so I collected these tips into one post which you can see here: <a title="Images, thumbnails and custom fields in WordPress" href="http://wpgarage.com/plugins/images-thumbnails-and-custom-fields-in-wordpress/">Images, thumbnails and custom fields in WordPress.</a></em><a title="Images, thumbnails and custom fields in WordPress" href="http://wpgarage.com/plugins/images-thumbnails-and-custom-fields-in-wordpress/"> </a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page&amp;desc=%2F%2F%20%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AYou%20may%20encounter%20situations%20where%20you%20need%20to%20automatically%20display%20a%20thumbnail%20or%20image%20of%20some%20kind%20that%20will%20link%20to%20posts.%20Here%27s%20an%20example%20of%20this%20kind%20of%20situation%3A%20you%20want%20to%20display%20recent%20posts%20from%20a%20certain%20category%20on%20your%20home%20page%2C%20with%20a%20thumbnail%20for%20each%20post%20and%20m" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;t=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page&amp;link=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page&amp;body=Link: http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %2F%2F%20%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AYou%20may%20encounter%20situations%20where%20you%20need%20to%20automatically%20display%20a%20thumbnail%20or%20image%20of%20some%20kind%20that%20will%20link%20to%20posts.%20Here%27s%20an%20example%20of%20this%20kind%20of%20situation%3A%20you%20want%20to%20display%20recent%20posts%20from%20a%20certain%20category%20on%20your%20home%20page%2C%20with%20a%20thumbnail%20for%20each%20post%20and%20m" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page&amp;srcUrl=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;srcTitle=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page&amp;snippet=%2F%2F%20%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AYou%20may%20encounter%20situations%20where%20you%20need%20to%20automatically%20display%20a%20thumbnail%20or%20image%20of%20some%20kind%20that%20will%20link%20to%20posts.%20Here%27s%20an%20example%20of%20this%20kind%20of%20situation%3A%20you%20want%20to%20display%20recent%20posts%20from%20a%20certain%20category%20on%20your%20home%20page%2C%20with%20a%20thumbnail%20for%20each%20post%20and%20m" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page&amp;summary=%2F%2F%20%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AYou%20may%20encounter%20situations%20where%20you%20need%20to%20automatically%20display%20a%20thumbnail%20or%20image%20of%20some%20kind%20that%20will%20link%20to%20posts.%20Here%27s%20an%20example%20of%20this%20kind%20of%20situation%3A%20you%20want%20to%20display%20recent%20posts%20from%20a%20certain%20category%20on%20your%20home%20page%2C%20with%20a%20thumbnail%20for%20each%20post%20and%20m&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page&amp;url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page&amp;selection=%2F%2F%20%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AYou%20may%20encounter%20situations%20where%20you%20need%20to%20automatically%20display%20a%20thumbnail%20or%20image%20of%20some%20kind%20that%20will%20link%20to%20posts.%20Here%27s%20an%20example%20of%20this%20kind%20of%20situation%3A%20you%20want%20to%20display%20recent%20posts%20from%20a%20certain%20category%20on%20your%20home%20page%2C%20with%20a%20thumbnail%20for%20each%20post%20and%20m" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/&amp;title=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/+&quot;Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fcode-snippets%2Fgiving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page%2F&amp;t=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+page" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Giving+each+WordPress+post+a+thumbnail%2C+and+display+the+thumbnail+on+the+home+pa%5B..%5D+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Giving%20each%20WordPress%20post%20a%20thumbnail%2C%20and%20display%20the%20thumbnail%20on%20the%20home%20page%22&amp;body=Link: http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %2F%2F%20%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AYou%20may%20encounter%20situations%20where%20you%20need%20to%20automatically%20display%20a%20thumbnail%20or%20image%20of%20some%20kind%20that%20will%20link%20to%20posts.%20Here%27s%20an%20example%20of%20this%20kind%20of%20situation%3A%20you%20want%20to%20display%20recent%20posts%20from%20a%20certain%20category%20on%20your%20home%20page%2C%20with%20a%20thumbnail%20for%20each%20post%20and%20m" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/code-snippets/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/feed/</wfw:commentRss>
		<slash:comments>168</slash:comments>
		</item>
		<item>
		<title>Display recent posts in WordPress sidebar</title>
		<link>http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/</link>
		<comments>http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 19:46:09 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[sidebar]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/</guid>
		<description><![CDATA[Here&#8217;s a bit of code to put in your sidebar to display the most recent posts on your blog:
&#60;?php $myposts = get_posts('numberposts=10&#38;offset=1');
foreach($myposts as $post)  &#62;
&#60;li&#62;&#60;a href="&#60;?php the_permalink(); ?&#62;"&#62;&#60;?php the_title();?&#62;&#60;/a&#62;&#60;/li&#62;
&#60;?php endforeach; ?&#62;

You can set the number of recent posts to appear on the first line of code where it says numberposts=10 &#8211; change the 10 [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a bit of code to put in your sidebar to display the most recent posts on your blog:</p>
<p><code>&lt;?php $myposts = get_posts('numberposts=10&amp;offset=1');<br />
foreach($myposts as $post) <img src='http://wpgarage.com/wp-includes/images/smilies/icon_confused.gif' alt=':?' class='wp-smiley' /> &gt;<br />
&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title();?&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php endforeach; ?&gt;<br />
</code><br />
You can set the number of recent posts to appear on the first line of code where it says numberposts=10 &#8211; change the 10 to the number of posts you want to appear. You can choose to offset the recent posts by any number; for example, if you select offset=1, as we did above, it won&#8217;t display the most recent post, but will start the list from the second-most recent post.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar&amp;desc=Here%27s%20a%20bit%20of%20code%20to%20put%20in%20your%20sidebar%20to%20display%20the%20most%20recent%20posts%20on%20your%20blog%3A%0A%0A%26lt%3B%3Fphp%20%24myposts%20%3D%20get_posts%28%27numberposts%3D10%26amp%3Boffset%3D1%27%29%3B%0Aforeach%28%24myposts%20as%20%24post%29%20%3A%3F%26gt%3B%0A%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%0A%26lt%3B%3Fp" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;t=Display+recent+posts+in+WordPress+sidebar" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Display+recent+posts+in+WordPress+sidebar&amp;link=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Display+recent+posts+in+WordPress+sidebar&amp;body=Link: http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Here%27s%20a%20bit%20of%20code%20to%20put%20in%20your%20sidebar%20to%20display%20the%20most%20recent%20posts%20on%20your%20blog%3A%0A%0A%26lt%3B%3Fphp%20%24myposts%20%3D%20get_posts%28%27numberposts%3D10%26amp%3Boffset%3D1%27%29%3B%0Aforeach%28%24myposts%20as%20%24post%29%20%3A%3F%26gt%3B%0A%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%0A%26lt%3B%3Fp" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar&amp;srcUrl=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;srcTitle=Display+recent+posts+in+WordPress+sidebar&amp;snippet=Here%27s%20a%20bit%20of%20code%20to%20put%20in%20your%20sidebar%20to%20display%20the%20most%20recent%20posts%20on%20your%20blog%3A%0A%0A%26lt%3B%3Fphp%20%24myposts%20%3D%20get_posts%28%27numberposts%3D10%26amp%3Boffset%3D1%27%29%3B%0Aforeach%28%24myposts%20as%20%24post%29%20%3A%3F%26gt%3B%0A%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%0A%26lt%3B%3Fp" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar&amp;summary=Here%27s%20a%20bit%20of%20code%20to%20put%20in%20your%20sidebar%20to%20display%20the%20most%20recent%20posts%20on%20your%20blog%3A%0A%0A%26lt%3B%3Fphp%20%24myposts%20%3D%20get_posts%28%27numberposts%3D10%26amp%3Boffset%3D1%27%29%3B%0Aforeach%28%24myposts%20as%20%24post%29%20%3A%3F%26gt%3B%0A%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%0A%26lt%3B%3Fp&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Display+recent+posts+in+WordPress+sidebar&amp;url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar&amp;selection=Here%27s%20a%20bit%20of%20code%20to%20put%20in%20your%20sidebar%20to%20display%20the%20most%20recent%20posts%20on%20your%20blog%3A%0A%0A%26lt%3B%3Fphp%20%24myposts%20%3D%20get_posts%28%27numberposts%3D10%26amp%3Boffset%3D1%27%29%3B%0Aforeach%28%24myposts%20as%20%24post%29%20%3A%3F%26gt%3B%0A%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%0A%26lt%3B%3Fp" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/&amp;title=Display+recent+posts+in+WordPress+sidebar" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/+&quot;Display+recent+posts+in+WordPress+sidebar&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fcode-snippets%2Fdisplay-recent-posts-in-wordpress-sidebar%2F&amp;t=Display+recent+posts+in+WordPress+sidebar" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Display+recent+posts+in+WordPress+sidebar+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Display%20recent%20posts%20in%20WordPress%20sidebar%22&amp;body=Link: http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Here%27s%20a%20bit%20of%20code%20to%20put%20in%20your%20sidebar%20to%20display%20the%20most%20recent%20posts%20on%20your%20blog%3A%0A%0A%26lt%3B%3Fphp%20%24myposts%20%3D%20get_posts%28%27numberposts%3D10%26amp%3Boffset%3D1%27%29%3B%0Aforeach%28%24myposts%20as%20%24post%29%20%3A%3F%26gt%3B%0A%26lt%3Bli%26gt%3B%26lt%3Ba%20href%3D%22%26lt%3B%3Fphp%20the_permalink%28%29%3B%20%3F%26gt%3B%22%26gt%3B%26lt%3B%3Fphp%20the_title%28%29%3B%3F%26gt%3B%26lt%3B%2Fa%26gt%3B%26lt%3B%2Fli%26gt%3B%0A%26lt%3B%3Fp" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/code-snippets/display-recent-posts-in-wordpress-sidebar/feed/</wfw:commentRss>
		<slash:comments>54</slash:comments>
		</item>
		<item>
		<title>My favorite WordPress tip</title>
		<link>http://wpgarage.com/tips/my-favorite-wordpress-tip/</link>
		<comments>http://wpgarage.com/tips/my-favorite-wordpress-tip/#comments</comments>
		<pubDate>Sat, 08 Sep 2007 21:20:36 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[excerpts]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/tips/my-favorite-wordpress-tip/</guid>
		<description><![CDATA[In Lorelle&#8217;s latest blog challenge, she asks us to describe our favorite WordPress tip. She says to think back to when we started experimenting with WordPress, and try to remember what tips we found valuable.
I started WordPress Garage in order to document my discoveries about WordPress. It was meant to serve as an online manual [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://wpgarage.com/wp-content/uploads/2007/09/blogchallenge.gif" alt="Blogging Challenge - Lorelle on WordPress" align="left" />In Lorelle&#8217;s latest blog challenge, <a href="http://lorelle.wordpress.com/2007/09/07/blog-challenge-your-favorite-wordpress-tip/" title="Blog Challenge: Your Favorite WordPress Tip">she asks us to describe our favorite WordPress tip</a>. She says to think back to when we started experimenting with <a href="http://wordpress.org" title="WordPress">WordPress</a>, and try to remember what tips we found valuable.</p>
<p>I started <a href="http://wpgarage.com" title="WordPress Garage">WordPress Garage</a> in order to document my discoveries about <a href="http://wordpress.org" title="WordPress">WordPress</a>. It was meant to serve as an online manual of sorts. So I decided to go back in time to see what I was blogging about close to the beginning of my WordPress journey.</p>
<p>I can see that the issues that interested me most at that time were related to optimizing blogs for search engines and readers. Here are the tips that most interested me at that time:</p>
<ul>
<li><strong>Tags</strong> &#8211; Tags are useful for more detailed categorization of posts, search engine optimization, and user navigation. I wanted to find the perfect tagging plugin that not only would add tagging, but enable me to create tag clouds and list related posts based on those tags, so that I could use one plugin for three features. First <a href="http://wpgarage.com/plugins/jeromes-keywords-plugin/" title="Jerome's Keywords Plugin">I tried Jerome&#8217;s Keywords Plugin</a>, only to find that it <a href="http://wpgarage.com/plugins/jeromes-keywords-broke-now-using-simple-tagging/" title="Jerome’s Keywords broke during upgrade, now using Simple Tagging">didn&#8217;t work once I upgraded</a> from WordPress version 2.1.1 to 2.1.2. I then tried out <a href="http://sw-guide.de/wordpress/wordpress-plugins/simple-tagging-plugin/" title="Simple Tagging Plugin">Simple Tagging</a>, which works wonderfully and does everything I want it to do, and now use it on all WordPress blogs and sites that I build.</li>
<li><strong>Excerpts</strong> &#8211; if you use <code>&lt;?php the_excerpt() ?&gt;</code> instead of <code>&lt;?php the_content() ?&gt;</code> in your template files so that certain pages automatically display excerpts instead of the full text of the post, all html tags are stripped from the text. That means that if you have images or links in the first paragraph or so of text, they are removed from the excerpt. Annoying. I searched for a solution <a href="http://wpgarage.com/plugins/the-excerpt-reloaded/" title="The Excerpt Reloaded">and found The Excerpt Reloaded plugin</a>. Only, it didn&#8217;t work quite right &#8211; if my excerpt had a bulleted list in it, for example, the entire page following that excerpt would be styled as one long list. But <a href="http://robsnotebook.com/the-excerpt-reloaded2" title="Rob's Notebook - The Excerpt Reloaded">Rob</a>, a blessed plugin developer, <a href="http://wpgarage.com/plugins/important-mod-to-the-excerpt-reloaded-plugin/" title="Important mod to the Excerpt Reloaded Plugin">created a mod of the plugin that fixed this problem</a>. I highly recommend using <a href="http://robsnotebook.com/the-excerpt-reloaded2" title="The Excerpt Reloaded">this plugin</a> if you want to automatically display excerpts and retain the formatting.<br />
Excerpts and videos: even with Rob&#8217;s plugin, <a href="http://wpgarage.com/tips/video-manual-excerpts/" title="Videos and excerpts don’t jive - and how to manually create excerpts">videos that are embedded in the beginning of any post will not appear in excerpts</a> &#8211; only the code will. So far, the only way that I have found for displaying videos in excerpts is to stop using <code>&lt;?php the_excerpt() ?&gt;</code> and to manually insert excerpts.</li>
<li><strong>Future posting</strong> &#8211; this is a tip that <a href="http://lorelle.wordpress.com/2006/10/01/working-ahead-future-posts-with-wordpress/" title="Working Ahead - Future Posts with WordPress">I learned from Lorelle</a>. When I first started blogging, I would write five posts on one day, and then publish nothing for the next couple of days. Not a very good strategy, since people, and maybe even search engines, like to see new content on a daily basis. So I started future posting whenever possible, which gave me some peace of mind for a few days where I knew I could take a break from blogging.</li>
</ul>
<p>The above tips are pretty basic, but I think they can mean the difference between a well optimized and usable blog, and one that doesn&#8217;t reach its potential.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip&amp;desc=In%20Lorelle%27s%20latest%20blog%20challenge%2C%20she%20asks%20us%20to%20describe%20our%20favorite%20WordPress%20tip.%20She%20says%20to%20think%20back%20to%20when%20we%20started%20experimenting%20with%20WordPress%2C%20and%20try%20to%20remember%20what%20tips%20we%20found%20valuable.%0A%0AI%20started%20WordPress%20Garage%20in%20order%20to%20document%20my%20discoveries%20about%20WordPress.%20It%20was%20mea" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;t=My+favorite+WordPress+tip" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=My+favorite+WordPress+tip&amp;link=http://wpgarage.com/tips/my-favorite-wordpress-tip/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=My+favorite+WordPress+tip&amp;body=Link: http://wpgarage.com/tips/my-favorite-wordpress-tip/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20Lorelle%27s%20latest%20blog%20challenge%2C%20she%20asks%20us%20to%20describe%20our%20favorite%20WordPress%20tip.%20She%20says%20to%20think%20back%20to%20when%20we%20started%20experimenting%20with%20WordPress%2C%20and%20try%20to%20remember%20what%20tips%20we%20found%20valuable.%0A%0AI%20started%20WordPress%20Garage%20in%20order%20to%20document%20my%20discoveries%20about%20WordPress.%20It%20was%20mea" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip&amp;srcUrl=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;srcTitle=My+favorite+WordPress+tip&amp;snippet=In%20Lorelle%27s%20latest%20blog%20challenge%2C%20she%20asks%20us%20to%20describe%20our%20favorite%20WordPress%20tip.%20She%20says%20to%20think%20back%20to%20when%20we%20started%20experimenting%20with%20WordPress%2C%20and%20try%20to%20remember%20what%20tips%20we%20found%20valuable.%0A%0AI%20started%20WordPress%20Garage%20in%20order%20to%20document%20my%20discoveries%20about%20WordPress.%20It%20was%20mea" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip&amp;summary=In%20Lorelle%27s%20latest%20blog%20challenge%2C%20she%20asks%20us%20to%20describe%20our%20favorite%20WordPress%20tip.%20She%20says%20to%20think%20back%20to%20when%20we%20started%20experimenting%20with%20WordPress%2C%20and%20try%20to%20remember%20what%20tips%20we%20found%20valuable.%0A%0AI%20started%20WordPress%20Garage%20in%20order%20to%20document%20my%20discoveries%20about%20WordPress.%20It%20was%20mea&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=My+favorite+WordPress+tip&amp;url=http://wpgarage.com/tips/my-favorite-wordpress-tip/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip&amp;selection=In%20Lorelle%27s%20latest%20blog%20challenge%2C%20she%20asks%20us%20to%20describe%20our%20favorite%20WordPress%20tip.%20She%20says%20to%20think%20back%20to%20when%20we%20started%20experimenting%20with%20WordPress%2C%20and%20try%20to%20remember%20what%20tips%20we%20found%20valuable.%0A%0AI%20started%20WordPress%20Garage%20in%20order%20to%20document%20my%20discoveries%20about%20WordPress.%20It%20was%20mea" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/tips/my-favorite-wordpress-tip/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/tips/my-favorite-wordpress-tip/&amp;title=My+favorite+WordPress+tip" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/tips/my-favorite-wordpress-tip/+&quot;My+favorite+WordPress+tip&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Ftips%2Fmy-favorite-wordpress-tip%2F&amp;t=My+favorite+WordPress+tip" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=My+favorite+WordPress+tip+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22My%20favorite%20WordPress%20tip%22&amp;body=Link: http://wpgarage.com/tips/my-favorite-wordpress-tip/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20Lorelle%27s%20latest%20blog%20challenge%2C%20she%20asks%20us%20to%20describe%20our%20favorite%20WordPress%20tip.%20She%20says%20to%20think%20back%20to%20when%20we%20started%20experimenting%20with%20WordPress%2C%20and%20try%20to%20remember%20what%20tips%20we%20found%20valuable.%0A%0AI%20started%20WordPress%20Garage%20in%20order%20to%20document%20my%20discoveries%20about%20WordPress.%20It%20was%20mea" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/tips/my-favorite-wordpress-tip/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/my-favorite-wordpress-tip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aizatto&#8217;s Related Posts Plugin</title>
		<link>http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/</link>
		<comments>http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/#comments</comments>
		<pubDate>Sun, 22 Apr 2007 11:32:42 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[template tags]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/</guid>
		<description><![CDATA[Most WordPress users are familiar with the WASABI Related Entries plugin. I&#8217;ve never used it because it involves messing around with the database tables. Instead, I have been using the Simple Tagging feature of displaying related posts based on tags used in the posts.
I recently discovered a new related posts plugin which seems easier to [...]]]></description>
			<content:encoded><![CDATA[<p>Most WordPress users are familiar with the <a href="http://wasabi.pbwiki.com/Related%20Entries" title="WASABI Related Entries">WASABI Related Entries plugin</a>. I&#8217;ve never used it because it involves messing around with the database tables. Instead, I have been using the <a href="http://sw-guide.de/wordpress/plugins/simple-tagging/" title="Simple Tagging">Simple Tagging</a> feature of <a href="http://sw-guide.de/wordpress/plugins/simple-tagging/simple-tagging-related-posts/" title="Simple Tagging Related Posts">displaying related posts</a> based on tags used in the posts.</p>
<p>I recently discovered a new related posts plugin which seems easier to use, and I plan to try it out in one of my next sites &#8211; <a href="http://dev.aizatto.com/2007/04/05/aizattos-related-posts-plugin-released/" title="Aizatto's Related Posts Plugin">Aizatto&#8217;s Related Posts Plugin</a>. <a href="http://wordpress.byexamples.com/2007/04/21/wordpress-plugins-aizattos-related-post/" title="WordPress by Examples">WordPress by Examples gives a detailed description</a> (more detailed than on the plugin developer&#8217;s site) of this plugin&#8217;s features:</p>
<ul>
<li>No messing with database tables: this plugin does the database stuff automatically</li>
<li>You don&#8217;t have to modify your template files &#8211; the related posts appear at the end of every post.</li>
<li>The related posts also appear in the RSS feed &#8211; that is pretty cool!</li>
<li>You can customize the appearance of the related posts.</li>
</ul>
<p><a href="http://dev.aizatto.com/2007/04/05/aizattos-related-posts-plugin-released/" title="Aizatto's Related Posts Plugin">Aizatto’s Related Posts Plugin&gt;&gt;</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin&amp;desc=Most%20WordPress%20users%20are%20familiar%20with%20the%20WASABI%20Related%20Entries%20plugin.%20I%27ve%20never%20used%20it%20because%20it%20involves%20messing%20around%20with%20the%20database%20tables.%20Instead%2C%20I%20have%20been%20using%20the%20Simple%20Tagging%20feature%20of%20displaying%20related%20posts%20based%20on%20tags%20used%20in%20the%20posts.%0A%0AI%20recently%20discovered%20a%20new%20re" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;t=Aizatto%27s+Related+Posts+Plugin" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Aizatto%27s+Related+Posts+Plugin&amp;link=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Aizatto%27s+Related+Posts+Plugin&amp;body=Link: http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Most%20WordPress%20users%20are%20familiar%20with%20the%20WASABI%20Related%20Entries%20plugin.%20I%27ve%20never%20used%20it%20because%20it%20involves%20messing%20around%20with%20the%20database%20tables.%20Instead%2C%20I%20have%20been%20using%20the%20Simple%20Tagging%20feature%20of%20displaying%20related%20posts%20based%20on%20tags%20used%20in%20the%20posts.%0A%0AI%20recently%20discovered%20a%20new%20re" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin&amp;srcUrl=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;srcTitle=Aizatto%27s+Related+Posts+Plugin&amp;snippet=Most%20WordPress%20users%20are%20familiar%20with%20the%20WASABI%20Related%20Entries%20plugin.%20I%27ve%20never%20used%20it%20because%20it%20involves%20messing%20around%20with%20the%20database%20tables.%20Instead%2C%20I%20have%20been%20using%20the%20Simple%20Tagging%20feature%20of%20displaying%20related%20posts%20based%20on%20tags%20used%20in%20the%20posts.%0A%0AI%20recently%20discovered%20a%20new%20re" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin&amp;summary=Most%20WordPress%20users%20are%20familiar%20with%20the%20WASABI%20Related%20Entries%20plugin.%20I%27ve%20never%20used%20it%20because%20it%20involves%20messing%20around%20with%20the%20database%20tables.%20Instead%2C%20I%20have%20been%20using%20the%20Simple%20Tagging%20feature%20of%20displaying%20related%20posts%20based%20on%20tags%20used%20in%20the%20posts.%0A%0AI%20recently%20discovered%20a%20new%20re&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Aizatto%27s+Related+Posts+Plugin&amp;url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin&amp;selection=Most%20WordPress%20users%20are%20familiar%20with%20the%20WASABI%20Related%20Entries%20plugin.%20I%27ve%20never%20used%20it%20because%20it%20involves%20messing%20around%20with%20the%20database%20tables.%20Instead%2C%20I%20have%20been%20using%20the%20Simple%20Tagging%20feature%20of%20displaying%20related%20posts%20based%20on%20tags%20used%20in%20the%20posts.%0A%0AI%20recently%20discovered%20a%20new%20re" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/&amp;title=Aizatto%27s+Related+Posts+Plugin" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/+&quot;Aizatto%27s+Related+Posts+Plugin&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fplugins%2Faizatto%25e2%2580%2599s-related-posts-plugin%2F&amp;t=Aizatto%27s+Related+Posts+Plugin" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Aizatto%27s+Related+Posts+Plugin+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Aizatto%27s%20Related%20Posts%20Plugin%22&amp;body=Link: http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Most%20WordPress%20users%20are%20familiar%20with%20the%20WASABI%20Related%20Entries%20plugin.%20I%27ve%20never%20used%20it%20because%20it%20involves%20messing%20around%20with%20the%20database%20tables.%20Instead%2C%20I%20have%20been%20using%20the%20Simple%20Tagging%20feature%20of%20displaying%20related%20posts%20based%20on%20tags%20used%20in%20the%20posts.%0A%0AI%20recently%20discovered%20a%20new%20re" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/aizatto%e2%80%99s-related-posts-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Make sure images aren&#8217;t too wide for your blog</title>
		<link>http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/</link>
		<comments>http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 20:13:58 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[posts]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/</guid>
		<description><![CDATA[If you insert an image in your post that is too wide for your blog layout, it will break the design. The iMax width plugin sets a maximum width for photos. This is useful for the following reasons:

It won&#8217;t allow you or other users to inadvertently break your blog design with photos that are too [...]]]></description>
			<content:encoded><![CDATA[<p>If you insert an image in your post that is too wide for your blog layout, it will break the design. The <a href="http://www.soldesignco.com/wordpress-imaxwidth.html" title="Wordpress Plugin - iMax Width">iMax width plugin</a> sets a maximum width for photos. This is useful for the following reasons:</p>
<ol>
<li>It won&#8217;t allow you or other users to inadvertently break your blog design with photos that are too large.</li>
<li>By having consistently sized photos, your site gains points in aesthetics.</li>
</ol>
<p>The plugin&#8217;s developer lists the following additional benefits of the plugin:</p>
<ul>
<li> Conserves bandwidth, server storage, and decreases load times.</li>
<li> Reduces reader annoyances (<em>keeps text from appearing to auto-scroll as images load in</em>)</li>
<li> Lightweight (<em>does all processing on post save</em>)</li>
</ul>
<p><a href="http://www.soldesignco.com/wordpress-imaxwidth.html" title="Wordpress Plugin - iMax Width">Wordpress Plugin &#8211; iMax Width&gt;&gt;</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog&amp;desc=If%20you%20insert%20an%20image%20in%20your%20post%20that%20is%20too%20wide%20for%20your%20blog%20layout%2C%20it%20will%20break%20the%20design.%20The%20iMax%20width%20plugin%20sets%20a%20maximum%20width%20for%20photos.%20This%20is%20useful%20for%20the%20following%20reasons%3A%0A%0A%09It%20won%27t%20allow%20you%20or%20other%20users%20to%20inadvertently%20break%20your%20blog%20design%20with%20photos%20that%20are%20too%20l" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;t=Make+sure+images+aren%27t+too+wide+for+your+blog" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Make+sure+images+aren%27t+too+wide+for+your+blog&amp;link=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Make+sure+images+aren%27t+too+wide+for+your+blog&amp;body=Link: http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A If%20you%20insert%20an%20image%20in%20your%20post%20that%20is%20too%20wide%20for%20your%20blog%20layout%2C%20it%20will%20break%20the%20design.%20The%20iMax%20width%20plugin%20sets%20a%20maximum%20width%20for%20photos.%20This%20is%20useful%20for%20the%20following%20reasons%3A%0A%0A%09It%20won%27t%20allow%20you%20or%20other%20users%20to%20inadvertently%20break%20your%20blog%20design%20with%20photos%20that%20are%20too%20l" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog&amp;srcUrl=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;srcTitle=Make+sure+images+aren%27t+too+wide+for+your+blog&amp;snippet=If%20you%20insert%20an%20image%20in%20your%20post%20that%20is%20too%20wide%20for%20your%20blog%20layout%2C%20it%20will%20break%20the%20design.%20The%20iMax%20width%20plugin%20sets%20a%20maximum%20width%20for%20photos.%20This%20is%20useful%20for%20the%20following%20reasons%3A%0A%0A%09It%20won%27t%20allow%20you%20or%20other%20users%20to%20inadvertently%20break%20your%20blog%20design%20with%20photos%20that%20are%20too%20l" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog&amp;summary=If%20you%20insert%20an%20image%20in%20your%20post%20that%20is%20too%20wide%20for%20your%20blog%20layout%2C%20it%20will%20break%20the%20design.%20The%20iMax%20width%20plugin%20sets%20a%20maximum%20width%20for%20photos.%20This%20is%20useful%20for%20the%20following%20reasons%3A%0A%0A%09It%20won%27t%20allow%20you%20or%20other%20users%20to%20inadvertently%20break%20your%20blog%20design%20with%20photos%20that%20are%20too%20l&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Make+sure+images+aren%27t+too+wide+for+your+blog&amp;url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog&amp;selection=If%20you%20insert%20an%20image%20in%20your%20post%20that%20is%20too%20wide%20for%20your%20blog%20layout%2C%20it%20will%20break%20the%20design.%20The%20iMax%20width%20plugin%20sets%20a%20maximum%20width%20for%20photos.%20This%20is%20useful%20for%20the%20following%20reasons%3A%0A%0A%09It%20won%27t%20allow%20you%20or%20other%20users%20to%20inadvertently%20break%20your%20blog%20design%20with%20photos%20that%20are%20too%20l" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/&amp;title=Make+sure+images+aren%27t+too+wide+for+your+blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/+&quot;Make+sure+images+aren%27t+too+wide+for+your+blog&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fplugins%2Fmake-sure-images-arent-too-wide-for-your-blog%2F&amp;t=Make+sure+images+aren%27t+too+wide+for+your+blog" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Make+sure+images+aren%27t+too+wide+for+your+blog+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Make%20sure%20images%20aren%27t%20too%20wide%20for%20your%20blog%22&amp;body=Link: http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A If%20you%20insert%20an%20image%20in%20your%20post%20that%20is%20too%20wide%20for%20your%20blog%20layout%2C%20it%20will%20break%20the%20design.%20The%20iMax%20width%20plugin%20sets%20a%20maximum%20width%20for%20photos.%20This%20is%20useful%20for%20the%20following%20reasons%3A%0A%0A%09It%20won%27t%20allow%20you%20or%20other%20users%20to%20inadvertently%20break%20your%20blog%20design%20with%20photos%20that%20are%20too%20l" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/make-sure-images-arent-too-wide-for-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool post title design at cfTopper</title>
		<link>http://wpgarage.com/design/cool-post-title-design-at-cftopper/</link>
		<comments>http://wpgarage.com/design/cool-post-title-design-at-cftopper/#comments</comments>
		<pubDate>Fri, 02 Mar 2007 06:29:24 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[posts]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/design/cool-post-title-design-at-cftopper/</guid>
		<description><![CDATA[cfTopper has the coolest design for post titles that I think I&#8217;ve ever seen. He has the post title with a reflection close underneath. Take a look:

I tried to get an idea of how he does it by using Firefox Web Developer and Firebug, and it seems that it&#8217;s a mixture of Javascript and Flash.
Whatever [...]]]></description>
			<content:encoded><![CDATA[<p>cfTopper has the coolest design for post titles that I think I&#8217;ve ever seen. He has the post title with a reflection close underneath. Take a look:</p>
<p><img src="http://www.wpgarage.com/wp-content/uploads/2007/03/cftopper_post_titles.Jpg" alt="cfTopper post title example" /></p>
<p>I tried to get an idea of how he does it by using <a href="https://addons.mozilla.org/firefox/60/" title="Firefox Web Developer Extension">Firefox Web Developer</a> and <a href="https://addons.mozilla.org/firefox/1843/" title="Firebug for Firefox">Firebug</a>, and it seems that it&#8217;s a mixture of Javascript and Flash.</p>
<p>Whatever it is, it&#8217;s pretty. Check out <a href="http://www.cftopper.com/" title="cfTopper">cfTopper</a> to see it in action (and to learn about ColdFusion if you&#8217;re interested!).</p>
<p><a href="http://www.cftopper.com/" title="cfTopper">cfTopper&gt;&gt; </a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper&amp;desc=cfTopper%20has%20the%20coolest%20design%20for%20post%20titles%20that%20I%20think%20I%27ve%20ever%20seen.%20He%20has%20the%20post%20title%20with%20a%20reflection%20close%20underneath.%20Take%20a%20look%3A%0A%0A%0A%0AI%20tried%20to%20get%20an%20idea%20of%20how%20he%20does%20it%20by%20using%20Firefox%20Web%20Developer%20and%20Firebug%2C%20and%20it%20seems%20that%20it%27s%20a%20mixture%20of%20Javascript%20and%20Flash.%0A%0AWhate" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;t=Cool+post+title+design+at+cfTopper" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Cool+post+title+design+at+cfTopper&amp;link=http://wpgarage.com/design/cool-post-title-design-at-cftopper/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Cool+post+title+design+at+cfTopper&amp;body=Link: http://wpgarage.com/design/cool-post-title-design-at-cftopper/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A cfTopper%20has%20the%20coolest%20design%20for%20post%20titles%20that%20I%20think%20I%27ve%20ever%20seen.%20He%20has%20the%20post%20title%20with%20a%20reflection%20close%20underneath.%20Take%20a%20look%3A%0A%0A%0A%0AI%20tried%20to%20get%20an%20idea%20of%20how%20he%20does%20it%20by%20using%20Firefox%20Web%20Developer%20and%20Firebug%2C%20and%20it%20seems%20that%20it%27s%20a%20mixture%20of%20Javascript%20and%20Flash.%0A%0AWhate" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper&amp;srcUrl=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;srcTitle=Cool+post+title+design+at+cfTopper&amp;snippet=cfTopper%20has%20the%20coolest%20design%20for%20post%20titles%20that%20I%20think%20I%27ve%20ever%20seen.%20He%20has%20the%20post%20title%20with%20a%20reflection%20close%20underneath.%20Take%20a%20look%3A%0A%0A%0A%0AI%20tried%20to%20get%20an%20idea%20of%20how%20he%20does%20it%20by%20using%20Firefox%20Web%20Developer%20and%20Firebug%2C%20and%20it%20seems%20that%20it%27s%20a%20mixture%20of%20Javascript%20and%20Flash.%0A%0AWhate" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper&amp;summary=cfTopper%20has%20the%20coolest%20design%20for%20post%20titles%20that%20I%20think%20I%27ve%20ever%20seen.%20He%20has%20the%20post%20title%20with%20a%20reflection%20close%20underneath.%20Take%20a%20look%3A%0A%0A%0A%0AI%20tried%20to%20get%20an%20idea%20of%20how%20he%20does%20it%20by%20using%20Firefox%20Web%20Developer%20and%20Firebug%2C%20and%20it%20seems%20that%20it%27s%20a%20mixture%20of%20Javascript%20and%20Flash.%0A%0AWhate&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Cool+post+title+design+at+cfTopper&amp;url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper&amp;selection=cfTopper%20has%20the%20coolest%20design%20for%20post%20titles%20that%20I%20think%20I%27ve%20ever%20seen.%20He%20has%20the%20post%20title%20with%20a%20reflection%20close%20underneath.%20Take%20a%20look%3A%0A%0A%0A%0AI%20tried%20to%20get%20an%20idea%20of%20how%20he%20does%20it%20by%20using%20Firefox%20Web%20Developer%20and%20Firebug%2C%20and%20it%20seems%20that%20it%27s%20a%20mixture%20of%20Javascript%20and%20Flash.%0A%0AWhate" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/cool-post-title-design-at-cftopper/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/&amp;title=Cool+post+title+design+at+cfTopper" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/cool-post-title-design-at-cftopper/+&quot;Cool+post+title+design+at+cfTopper&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Fcool-post-title-design-at-cftopper%2F&amp;t=Cool+post+title+design+at+cfTopper" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Cool+post+title+design+at+cfTopper+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Cool%20post%20title%20design%20at%20cfTopper%22&amp;body=Link: http://wpgarage.com/design/cool-post-title-design-at-cftopper/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A cfTopper%20has%20the%20coolest%20design%20for%20post%20titles%20that%20I%20think%20I%27ve%20ever%20seen.%20He%20has%20the%20post%20title%20with%20a%20reflection%20close%20underneath.%20Take%20a%20look%3A%0A%0A%0A%0AI%20tried%20to%20get%20an%20idea%20of%20how%20he%20does%20it%20by%20using%20Firefox%20Web%20Developer%20and%20Firebug%2C%20and%20it%20seems%20that%20it%27s%20a%20mixture%20of%20Javascript%20and%20Flash.%0A%0AWhate" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/cool-post-title-design-at-cftopper/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/cool-post-title-design-at-cftopper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
