<?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>JR Web Studio</title>
	<atom:link href="http://jrwebstudio.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jrwebstudio.com</link>
	<description>We Design your Wordpress themes!</description>
	<lastBuildDate>Sat, 27 Apr 2013 11:03:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Visitor video link submission on WP Tube 2 with CF 7</title>
		<link>http://jrwebstudio.com/user-video-submit/</link>
		<comments>http://jrwebstudio.com/user-video-submit/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 20:21:00 +0000</pubDate>
		<dc:creator>JR Web</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://jrwebstudio.com/?p=1053</guid>
		<description><![CDATA[1. Introduction In most cases people use Contact Form 7 for communication with the site owner, but in this tutorial we will use it to ]]></description>
				<content:encoded><![CDATA[<h3>1. Introduction</h3>
<p>In most cases people use Contact Form 7 for communication with the site owner, but in this tutorial we will use it to allow our visitors to send video links, that will be easily published in WP Tube 2 theme (works also on other themes).<br />
<strong>I will continue the tutorial assuming you already installed <a title="Contact Form 7" href="http://wordpress.org/extend/plugins/contact-form-7/" target="_blank">Contact Form 7</a></strong></p>
<h3>2. Contact Form 7 &#8211; Code</h3>
<p>In Contact Form 7 click &#8220;Add New&#8221; and name the form</p>
<pre> WPTube2 User Videos</pre>
<p>In the mail settings change the second row from [your-name] &lt;[your-email]&gt; to any email you like since this form will not be sending any mail. Next copy the code bellow and replace the existing code the form box.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;strong&gt;Video Title:&lt;/strong&gt; &lt;em&gt;&lt;small&gt;( e.g: Michael Jackson - Beat It )&lt;/small&gt; &lt;/em&gt;
&amp;#91;text* wpt2-post-title 48/100&amp;#93;

&lt;strong&gt;Video Link:&lt;/strong&gt;
&lt;em&gt;&lt;small&gt;( e.g: http://www.youtube.com/watch?v=Ym0hZG-zNOk )&lt;/small&gt;&lt;/em&gt;
&amp;#91;text* wpt2-video-link 48/100&amp;#93;

[submit id:submit &quot;Send Video&quot;]

&lt;em&gt;Supported Video Sources: YouTube, Vimeo, DailyMotion, blip.tv, Viddler, Hulu, Qik, Revision3, funnyordie.com&lt;/em&gt;
</pre>
<p>The final form should look like the image bellow!<br />
<img class="aligncenter size-full wp-image-1071" alt="form_view" src="http://jrwebstudio.com/wp-content/uploads/2013/01/form_view.jpg" width="600" height="458" /></p>
<h3>3. Function for creating post draft from form</h3>
<p>If you are using WP Tube 2 just copy the code bellow put it in a text file and rename that to whateveryouwant.php and upload it to themes/wptube2/plugins folder.<br />
For other WP Tube version you need to edit functions.php and add the code bellow at the end of the form(remember to delete the ?php row)!</p>
<pre class="brush: php; title: ; notranslate">
&lt;!--?php // Function to create Post Draft from Form function jrweb_wpcf7_save($cfdata) { 	$formtitle = $cfdata---&gt;title; // Get the form title from Contact Form 7
	$formdata = $cfdata-&gt;posted_data; // Data That will be posted on the form
	if ($formtitle == 'WPTube2 User Videos') {
		$cfdata-&gt;skip_mail = true; // true = will not send any mail when user submits links

		// access data from the submitted form

		$post_title = $formdata['wpt2-post-title']; //This is the post title
		$post_content = '<a href="http://&#039;.$formdata&#039;wpt2-video-link&#039;.&#039;">&#039; . $formdata[&#039;wpt2-video-link&#039;] . &#039;</a>'; // Post Content
		preg_match_all('/[a-zA-Z0-9]{3,}/', $post_title, $matches); // Create tags from post title
		$comma_separated = implode(&quot;,&quot;, $matches[0]);

		// create a new post

		$newpost = array(
			'post_title' =&gt; $post_title,
			'post_content' =&gt; $post_content,
			'tags_input' =&gt; array(
				$comma_separated
			) ,
			'post_status' =&gt; 'draft'
		);
		$newpostid = wp_insert_post($newpost);
	}
}

add_action('wpcf7_before_send_mail', 'jrweb_wpcf7_save', 1);
</pre>
<h3>4. Showing the form in a page or text widget</h3>
<p>Now you have completed all the necessary steps just need to show the form in you site. I personally use the wordpress text widget because it is always visible for visitors.<br />
Copy the shortcode for your form and paste it into your post, page or text widget content. In my case the Text widget would look like the image bellow:<br />
<img class="aligncenter size-full wp-image-1073" alt="widget" src="http://jrwebstudio.com/wp-content/uploads/2013/01/widget.jpg" width="600" height="458" />
<div id="wpcr_respond_1"></div>
]]></content:encoded>
			<wfw:commentRss>http://jrwebstudio.com/user-video-submit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress against the rest of the world?</title>
		<link>http://jrwebstudio.com/wordpress-against-the-rest-of-the-world/</link>
		<comments>http://jrwebstudio.com/wordpress-against-the-rest-of-the-world/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 20:59:48 +0000</pubDate>
		<dc:creator>JR Web</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://jrwebstudio.com/?p=491</guid>
		<description><![CDATA[ordPress is in many aspects more advanced than its competitors such as Blogger, Drupal, Joomla or Typepad. WordPress is better than Blogger because you own ]]></description>
				<content:encoded><![CDATA[<p><a href="http://jrwebstudio.com/wp-content/uploads/2010/10/wp-vs-others1.jpg"><img class="alignleft size-thumbnail wp-image-492" style="margin: 5px 10px; border: black 2px solid;" title="wp-vs-others1" src="http://jrwebstudio.com/wp-content/uploads/2010/10/wp-vs-others1-150x150.jpg" alt="" width="150" height="150" /></a><span class="dropcap">W</span>ordPress is in many aspects more advanced than its competitors such as Blogger, Drupal, Joomla or Typepad. WordPress is better than Blogger because you own your WordPress blogs, and Blogger is owned by Google. This means that they can delete you if they want to. You cannot get your domain if you don’t pay. Drupal is powerful CMS tools, but you need to know PHP and other languages to use its strengths which is apparently directed only to experts. In terms of TypePad, it costs in range between 8 and 88$/month, it doesn’t have an open code and it is fundamental downside comparing to WordPress. Joomla CMS is often compared to WordPress, but in sense of user’s interface, WordPress is much better. Joomla CMS sometimes required 6 to 10 clicks to post an image to a site whereas WordPress requires 2 clicks.
<div id="wpcr_respond_1"></div>
]]></content:encoded>
			<wfw:commentRss>http://jrwebstudio.com/wordpress-against-the-rest-of-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jrwebstudio.com/wp-tube-2/</link>
		<comments>http://jrwebstudio.com/wp-tube-2/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 19:55:59 +0000</pubDate>
		<dc:creator>JR Web</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wptube platinum]]></category>

		<guid isPermaLink="false">http://jrwebstudio.com/?p=209</guid>
		<description><![CDATA[WP Tube 2 is the most complete video blogging template for WordPress, you can setup your personal youtube like video blog in less 10 minutes and start VLoging from more than 50 different video hosting sites.
<br />
<a class="button3" href="http://jrwebstudio.com/wp-tube-platinum/"><span>More&#160;Details</span></a> <a class="button2" href="http://wptube.jrwebstudio.com">Live Demo</a> <a href="http://jrwebstudio.com/purchase_wptube?iframe=true&#038;width=765&#038;height=350" class="button4" rel="prettyPhoto[iframes]">Purchase</a> ]]></description>
				<content:encoded><![CDATA[<div class="one_half">
<p><img class="alignleft size-medium wp-image-874" alt="" src="http://jrwebstudio.com/wp-content/uploads/2012/11/headerlogo-300x56.png" width="300" height="56" />
<div class="clear"></div>
<p><a href="http://jrwebstudio.com/wp-content/uploads/2010/02/wptube21.png"><img class="alignleft wp-image-902" title="WP Tube 2" alt="" src="http://jrwebstudio.com/wp-content/uploads/2010/02/wptube21.png" width="150" height="205" /></a>If you were looking for the best WordPress video theme WP Tube 2 is the one. It includes all necessary plugins and options to create a Youtube look-alike web site in less than ten minutes.<br />
With Custom Video Publishing plugin that supports more than <a href="http://jrwebstudio.com/wptube-2-video-publishing-list/" target="_blank">50 video sites</a> you can easily publish videos in seconds.</p>
<p>&nbsp;</p>
<p><strong>WP Tube 2</strong> saves thumbnails from over 30 different Video hosting sites to your server and adds them to video-posts automaticaly.<br />
Back panel options included in WP Tube 2 make your theme unique by changing the colors and styling it your way!</p>
<div class="green_message">
Avaliable now for only <span class="ico_dollar"><strong><strong>24.95</strong> </strong></span>euro using the coupon: <code>springwptube</code>.
</div>
<div class="coupon_code">
<div class="blue_message">
<label for="coupon_field">Coupon Code: </label><input class="mc_merge_var" id="coupon_field" type="text" value="" />
</div>
</div>
<ul id="purchase_button">
<li><a href="http://wptube.jrwebstudio.com/" target="_blank"><img alt="" src="http://jrwebstudio.com/wp-content/uploads/2010/02/demo.png" /></a></li>
<li><a id="coupon_link" href="https://www.e-junkie.com/ecom/gb.php?c=cart&amp;i=WPT2171122012WF&amp;cl=158265&amp;ejc=2" target="ej_ejc"><img alt="Buy Now" src="http://jrwebstudio.com/wp-content/uploads/2010/02/buy_now.png" border="0" /></a>​</li>
</ul>
</div>
<div class="one_half last">
<h4>Main Features</h4>
<ul class="check_list">
<li>Automatic thumbnails from 30 Video sites</li>
<li>Built in Video Publisher for 50+ Video Sites</li>
<li>Video Sorting by Date/Likes/Views/Comments</li>
<li>Jquery Lights On/Off for Cinema View</li>
<li>Two WordPress Menus Header Navigation and footer</li>
<li>Full control over Bacground &amp; Font Colors</li>
<li>Customizable Feature Slider for Home page</li>
<li>Two Post Layouts Detail &amp; Thumb View</li>
<li>jQuery Tabs Widget</li>
<li>Threaded comments</li>
<li>Facebook Opengraph Meta Tags</li>
<li>Reported Videos Admin Page</li>
<li>Ajaxified Comment submission</li>
<li>Custom logo image integration</li>
<li>Custom background image integration</li>
<li>Custom favicon image integration</li>
<li>Huge Theme Backend Options</li>
<li>Like and Dislike with youtube look-alike measurement bar!</li>
<li>Build-in pagination</li>
<li>Superfish Navigation</li>
<li>Featured Image Support</li>
<li>Social Bookmarking</li>
<li>5 Sidebars</li>
<li>Sticky post visibility</li>
<li>2 Rows Related Posts Slider</li>
</ul>
</div>
<div class="clear"></div>
<div id="id7997">
<ul class="short-tabs">
<li><a href="#"><span>Thumbs and Detail View</span></a></li>
<li><a href="#"><span>Thumbs only hidden sidebar</span></a></li>
<li><a href="#"><span>Detail View Only</span></a></li>
<li><a href="#"><span>Sidebar Left</span></a></li>
<li><a href="#"><span>Theme Options</span></a></li>
<li><a href="#"><span>Quick Video Publisher</span></a></li>
</ul>
<div class="panes">
<div>
<p><a href="http://jrwebstudio.com/wp-content/uploads/2010/02/wptube2_page1.jpg"><img class="aligncenter size-large wp-image-884" title="wptube2_page1" alt="" src="http://jrwebstudio.com/wp-content/uploads/2010/02/wptube2_page1-676x1024.jpg" width="676" height="1024" /></a>
</div>
<div>
<p><a href="http://jrwebstudio.com/wp-content/uploads/2010/02/thumbs_only.jpg"><img class="aligncenter wp-image-885" title="thumbs_only" alt="" src="http://jrwebstudio.com/wp-content/uploads/2010/02/thumbs_only.jpg" width="676" height="728" /></a>
</div>
<div>
<p><a href="http://jrwebstudio.com/wp-content/uploads/2010/02/646_detail_view.jpg"><img class="aligncenter size-large wp-image-886" title="646_detail_view" alt="" src="http://jrwebstudio.com/wp-content/uploads/2010/02/646_detail_view-577x1024.jpg" width="577" height="1024" /></a>
</div>
<div>
<p><a href="http://jrwebstudio.com/wp-content/uploads/2010/02/WP-Tube-2-Turn-your-wordperss-into-a-powerfull-video-site4.jpg"><img class="aligncenter wp-image-894" title="WP-Tube-2---Turn-your-wordperss-into-a-powerfull-video-site(4)" alt="" src="http://jrwebstudio.com/wp-content/uploads/2010/02/WP-Tube-2-Turn-your-wordperss-into-a-powerfull-video-site4.jpg" width="646" height="1011" /></a>
</div>
<div>
<p><a href="http://jrwebstudio.com/wp-content/uploads/2010/02/general_settings.jpg"><img class="aligncenter wp-image-896" title="general_settings" alt="" src="http://jrwebstudio.com/wp-content/uploads/2010/02/general_settings.jpg" width="800" height="721" /></a>
</div>
<div>
<p><a href="http://jrwebstudio.com/wp-content/uploads/2010/02/WP-Tube-2-Quick-Video-Publisher-‹-WP-Tube-2-—-WordPress.png"><img class="aligncenter size-large wp-image-889" title="WP Tube 2 - Quick Video Publisher ‹ WP Tube 2 — WordPress" alt="" src="http://jrwebstudio.com/wp-content/uploads/2010/02/WP-Tube-2-Quick-Video-Publisher-‹-WP-Tube-2-—-WordPress-1000x1024.png" width="1000" height="1024" /></a>
</div>
</p></div>
</p></div>
<p>		<script>$(function() { $('div#id7997 ul.short-tabs').tabs('div#id7997 div.panes > div'); });</script></p>
<div id="wpcr_respond_1"></div>
]]></content:encoded>
			<wfw:commentRss>http://jrwebstudio.com/wp-tube-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Youtube decreases bandwidth for embedded videos!!!</title>
		<link>http://jrwebstudio.com/youtube-decreases-bandwidth-for-embedded-videos/</link>
		<comments>http://jrwebstudio.com/youtube-decreases-bandwidth-for-embedded-videos/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 03:02:58 +0000</pubDate>
		<dc:creator>JR Web</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://jrwebstudio.com/?p=55</guid>
		<description><![CDATA[Lately I have been working on my final release of WP-Tube 1.4 and suddenly i noticed something interesting that youtube doesn&#8217;t have the same bandwith ]]></description>
				<content:encoded><![CDATA[<p><img alt="" src="http://t0.gstatic.com/images?q=tbn:X0twstD3Oe3H4M:http://i393.photobucket.com/albums/pp20/soundmgt/Logos/youtube-logo.jpg&#038;t=1" title="Youtbue" class="alignnone" width="267" height="189" />Lately I have been working on my final release of WP-Tube 1.4 and suddenly i noticed something interesting that youtube doesn&#8217;t have the same bandwith for videos played on youtube and those that are embedded on your site. I must say this was a big disappointment because they are playing a big monopoly and this will only take over our visitors. If you wanna see this in action I have recorded a video that compares the loading of the same video on youtube and on my site.
<div id="wpcr_respond_1"></div>
]]></content:encoded>
			<wfw:commentRss>http://jrwebstudio.com/youtube-decreases-bandwidth-for-embedded-videos/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Valid XHTML embed for DOTSUB in WordPress</title>
		<link>http://jrwebstudio.com/valid-xhtml-embed-for-dotsub-in-wordpress/</link>
		<comments>http://jrwebstudio.com/valid-xhtml-embed-for-dotsub-in-wordpress/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 05:23:40 +0000</pubDate>
		<dc:creator>JR Web</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[dotsub]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://jrwebstudio.com/?p=100</guid>
		<description><![CDATA[During the development of wptube I had a hard time finding how to embed dotsub.com videos in wordpress but finally i did it and if ]]></description>
				<content:encoded><![CDATA[<p>During the development of wptube I had a hard time finding how to embed dotsub.com videos in wordpress but finally i did it and if anybody needs it bellow is the code. You have to change the part after uuid= which is the unique video id ( 7281f5dc-d4b1-4315-abb7-143becd34f49 ) to the video you want to embed.<br />
Here is the code:</p>
<pre lang="html4strict">
<object type="application/x-shockwave-flash" data="http://dotsub.com/static/players/portalplayer.swf" width="545" height="440">
  <param name="movie" value="http://dotsub.com/static/players/portalplayer.swf" />
  <param name="flashvars" value="uuid=7281f5dc-d4b1-4315-abb7-143becd34f49&amp;lang=eng&amp;type=flv&amp;plugins=dotsub&amp;tid=UA-3684979-1&amp;embedded=false" />
  <param name="allowFullScreen" value="true" />
  <param name="wmode" value="opaque" />
</object>
</pre>
<p><object type="application/x-shockwave-flash" data="http://dotsub.com/static/players/portalplayer.swf" width="545" height="440"><param name="movie" value="http://dotsub.com/static/players/portalplayer.swf" /><param name="flashvars" value="uuid=7281f5dc-d4b1-4315-abb7-143becd34f49&amp;lang=eng&amp;type=flv&amp;plugins=dotsub&amp;tid=UA-3684979-1&amp;embedded=false" /><param name="allowFullScreen" value="true" /><param name="wmode" value="opaque" /></object>
<div id="wpcr_respond_1"></div>
]]></content:encoded>
			<wfw:commentRss>http://jrwebstudio.com/valid-xhtml-embed-for-dotsub-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WP Tube Platinum 1.0</title>
		<link>http://jrwebstudio.com/wp-tube-premium-1-4/</link>
		<comments>http://jrwebstudio.com/wp-tube-premium-1-4/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 06:29:41 +0000</pubDate>
		<dc:creator>JR Web</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[video theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wptube platinum]]></category>

		<guid isPermaLink="false">http://jrwebstudio.com/?p=21</guid>
		<description><![CDATA[Wp Tube Platinum you can see it here http://wptube.jrwebstudio.com The final realease in a matter of days, it includes a lot of new options, features ]]></description>
				<content:encoded><![CDATA[<p>Wp Tube Platinum you can see it here <a href="http://wptube.jrwebstudio.com">http://wptube.jrwebstudio.com</a><br />
The final realease in a matter of days, it includes a lot of new options, features and benefits and all of the bugs are fixed. The final release named <strong>WP Tube Platinum </strong>and will be avaliable for sale on themeforest.com, WP Tube Platinum has many new feautres and extras, you can embed videos with the new add video plugin from over 50 web hosting sites all in XHTML Valid format. Theme includes reported posts plugin, lights off, favorited posts and many other stuff.</p>
<div id="attachment_120" class="wp-caption aligncenter" style="width: 590px"><a  href="http://jrwebstudio.com/wp-content/uploads/2009/11/wptube_platinum1.jpg"><img src="http://jrwebstudio.com/wp-content/uploads/2009/11/wptube_platinum1.jpg" alt="WP Tube Platinum" title="wptube_platinum" width="580" height="414" class="size-full wp-image-120" /></a>
<p class="wp-caption-text">WP Tube Platinum</p>
</div>
<div id="wpcr_respond_1"></div>
]]></content:encoded>
			<wfw:commentRss>http://jrwebstudio.com/wp-tube-premium-1-4/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>WordPress Post Thumbnails – Just another Solution</title>
		<link>http://jrwebstudio.com/wordpress-post-thumbnails-just-another-solution/</link>
		<comments>http://jrwebstudio.com/wordpress-post-thumbnails-just-another-solution/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 11:34:25 +0000</pubDate>
		<dc:creator>JR Web</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://jrwebstudio.com/?p=68</guid>
		<description><![CDATA[Ok since we all know that 1 image = 1000 words, I will share with you how to you easily have post thumbnails with nothing ]]></description>
				<content:encoded><![CDATA[<p>Ok since we all know that 1 image = 1000 words, I will share with you how to you easily have post thumbnails with nothing more than what wordpress offers. This piece of code will get the first uploaded image or the first inserted image and create a thumbnail for you with a link to that post, and you can specify a nice image for posts that have no images and put that image in your theme <strong>/images </strong>folder and name the image <strong>thumb_noimage.jpg</strong></p>
<p>Add this code where you want the thumbnails to appear</p>
<pre lang="php"><?php print_post_thumb($post) ?></pre>
<p>Add this code to functions.php</p>
<pre lang="php">
// Gets the first uploaded image AND/OR first inserted image into post 
function get_thumb_first_post_image($post,&#038;$thumb_url) {
	//Get images attached to the post   
	$args = array(   
  	'post_type' => 'attachment',   
   	'post_mime_type' => 'image',   
   	'numberposts' => -1,   
   	'order' => 'ASC',   
   	'post_status' => null,   
   	'post_parent' => $post->ID);   
	$attachments = get_posts($args);   
	if ($attachments) {   
   		foreach ($attachments as $attachment) {   
       	$thumb_url = wp_get_attachment_thumb_url( $attachment->ID );   
                return 1;  
		 }   
	}
} 
// This Prints an image when there is no img in the post 
//Note:you can change the path to your images folder
function get_thumb_no_image($post,&#038;$thumb_url) {
	$content = $post->post_content;
	$thumb_url = get_template_directory_uri() . '/images/thumb_noimage.jpg';
	return 1;
}
// Generates the image with link to the post 
//Note:Change the width and height to your needs
function get_post_thumb($url,$title,$img) {
	return '<a href="' . $url . '" title="' . $title . '"><img src="' .
		$img . '" alt="' . $title . '" width="150px" height="150px" /></a>';
}
// Prints the generated images into theme
function print_post_thumb($post) {
		get_thumb_first_post_image($post,$thumb_url)
	 ||	get_thumb_no_image($post,$thumb_url);
	echo get_post_thumb(get_permalink($post->ID), $post->post_title,
					$thumb_url);
}
</pre>
<div id="wpcr_respond_1"></div>
]]></content:encoded>
			<wfw:commentRss>http://jrwebstudio.com/wordpress-post-thumbnails-just-another-solution/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>JR Web Studio is back ONLINE</title>
		<link>http://jrwebstudio.com/jr-web-studio-is-back-online/</link>
		<comments>http://jrwebstudio.com/jr-web-studio-is-back-online/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 23:04:08 +0000</pubDate>
		<dc:creator>JR Web</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[jr]]></category>
		<category><![CDATA[jrwebstudio]]></category>
		<category><![CDATA[studio]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://jrwebstudio.com/?p=1</guid>
		<description><![CDATA[Hello everyone, Sorry if you missed me , i had to go offline for quite a while because had some issues with my previous hosting ]]></description>
				<content:encoded><![CDATA[<p>Hello everyone,<br />
Sorry if you missed me <img src='http://jrwebstudio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , i had to go offline for quite a while because had some issues with my previous hosting company and thats why i switched to <a href="http://stats.justhost.com/track?c74fddbe4430ed595ad3579ac6c03b917">justhost.com</a> which for the moment is the best hosting company overall from what I have seen, I did quite some research until I made this decision but finally I am satisfied.<br />
Soon I will release the newest version of WP-Tube called WP Tube Platinum which would be the final and the last one, it will include alot of new features and options with perfect design.
<div id="wpcr_respond_1"></div>
]]></content:encoded>
			<wfw:commentRss>http://jrwebstudio.com/jr-web-studio-is-back-online/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
