<?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>Digital Raindrops &#187; the loop</title>
	<atom:link href="http://digitalraindrops.net/demo/wordpress/cms-lite/tag/the-loop/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalraindrops.net/demo/wordpress/cms-lite</link>
	<description>quality free wordpress themes and tutorials for your blog, themes download, wordpress templates, download wordpress theme, wordpress template</description>
	<lastBuildDate>Sat, 01 May 2010 20:56:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Adding Post Images</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 14:17:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[2.9]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[post images]]></category>
		<category><![CDATA[post thumbnails]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[the loop]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/</guid>
		<description><![CDATA[WordPress 2.9+ has support for post and page images, looking at the latest release from Artisteer 2.4 there still is no option to have post images, but it is not such a big problem, let us walk you through it and in less than 30 minutes you will have a post with a nice picture. [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.9+ has support for post and page images, looking at the latest release from Artisteer 2.4 there still is no option to have post images, but it is not such a big problem, let us walk you through it and in less than 30 minutes you will have a post with a nice picture.</p>
<p><span id="more-385"></span></p>
<p>Our latest theme is the <a href="http://www.digitalraindrops.net/demo/wordpress/portfolio/" target="_blank">Portfolio Theme</a>, we have used Artisteer 2.4, cu3er slideshow and have created a function to add a number of categories, posts and tags when the theme is first loaded, check back early February for linking, columns and mouseover fading.</p>
<p>Visit <a href="http://digitalraindrops.net/demo/wordpress/wedding-theme/">The Wedding Theme</a> to see how the post images look, while you are there sign the guestbook, we would say view our photos but if we have not emailed you the password you will not be able to.</p>
<p>This post has been created based on a post by <a href="http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/" target="_blank">Mark Jaquith here</a> and we would like to thank mark for making the code easy to follow.</p>
<p>But in this short tutorial we are only looking at the Post Images, support for post images is now a part of WordPress and is easy to implement so lets get started, if you have been following our tutorials then you will already have these lines in the demo-functions.php file, if not you can add them to the Artisteer functions.php file.</p>
<p>The width (200)  and height (133)  dimensions we used here in line three are for a standard landscape image, you may want to change the dimensions to a square or portrait based on the type of posts you will be making.</p>
<p>Add to either your <strong>demo-functions.php</strong> or the Artisteer theme <strong>functions.php</strong></p>
<pre class="brush: php; title: ;">
/* Start WordPress Thumbnail Support Code */
add_theme_support( 'post-thumbnails');
set_post_thumbnail_size( 200, 133, true); // Normal post thumbnails
add_image_size( 'single-post-thumbnail', 400, 9999 ); // Permalink thumbnail size
/* End WordPress Thumbnail Support Code */
</pre>
<p>Now we need to add a style to the stylesheet for our image, you may want to pad the image or add additional margins to suit your theme, Artisteer adds a margin around the img tag, in our theme it was 7px so we added that to the image width, 200 to 214px, and a right margin just to push the text more to the right.</p>
<p>Add to either your <strong>demo-custom.css</strong> or the Artisteer theme <strong>style.css</strong></p>
<pre class="brush: css; title: ;">
/* Add a div to the post list for our thumbnail images */
#demo-image
{
 margin-right: 7px;
 float: left;
 overflow: hidden;
 width: 214px;
 height: 100%px;
}
</pre>
<p>Last step is to add our image into two Artisteer files, index.php and archive.php, as you scroll down you will see this line.</p>
<p>&lt;?php while (have_posts()) : the_post(); ?&gt;</p>
<p>Below that is another line that look like this, paste the code lines after this lines</p>
<p>&lt;!&#8211; article-content &#8211;&gt;</p>
<p>Add this code to the<strong> index.php</strong> and <strong>archive.php</strong></p>
<pre class="brush: xml; title: ;">
&lt;!-- Start demo code Add our post image to the post list --&gt;
 &lt;div id=&quot;demo-image&quot;&gt;
 &lt;?php the_post_thumbnail(); ?&gt;
 &lt;/div&gt;
 &lt;!-- End demo code Add our post image to the post list --&gt;
</pre>
<p>So your code block <strong>should</strong> look like this:</p>
<pre class="brush: xml; title: ;">
&lt;div class=&quot;art-postcontent&quot;&gt;
 &lt;!-- article-content --&gt;

 &lt;!-- Start demo code Add our post image to the post list --&gt;
 &lt;div id=&quot;demo-image&quot;&gt;
 &lt;?php the_post_thumbnail(); ?&gt;
 &lt;/div&gt;
 &lt;!-- End demo code Add our post image to the post list --&gt;

 &lt;?php if (is_search()) the_excerpt(); else the_content(__('Read the rest of this entry &amp;raquo;', 'kubrick')); ?&gt;
 &lt;?php if (is_page() or is_single()) wp_link_pages(array('before' =&gt; '&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; ', 'after' =&gt; '&lt;/p&gt;', 'next_or_number' =&gt; 'number')); ?&gt;

 &lt;!-- /article-content --&gt;
&lt;/div&gt;
</pre>
<p>Now that is it with the code how easy was that, just edit a post and in the right column you will see an option for the Post Thumbnail, select an image from the post media and you will see an option to make thumbnail, save the post and view your website.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Settings51.jpg"><img style="border: 0px" title="Settings-5" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Settings5_thumb1.jpg" border="0" alt="Settings-5" width="642" height="246" /></a></p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/screenshot.jpg"><img style="border: 0px" title="screenshot" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/screenshot_thumb.jpg" border="0" alt="screenshot" width="687" height="435" /></a></p>
<p>The last and most important thing is to let others know if this helped you, just add your comment to this post for anyone else reading it.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
</ul><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

