<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Wordpress Development Blog</title>
	
	<link>http://wordpressdevelopment.com/blog</link>
	<description>Sporting Kubrick &amp; Loving It!</description>
	<lastBuildDate>Thu, 06 Jan 2011 18:01:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/wordpress-development" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="wordpress-development" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to specify a Facebook thumbnail when sharing a post</title>
		<link>http://wordpressdevelopment.com/blog/tips/how-to-specify-a-facebook-thumbnail-when-sharing-a-post/</link>
		<comments>http://wordpressdevelopment.com/blog/tips/how-to-specify-a-facebook-thumbnail-when-sharing-a-post/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 01:58:39 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[Share]]></category>
		<category><![CDATA[Thumbnail]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=121</guid>
		<description><![CDATA[Need: The ability to control the thumbnail to be used when sharing a post with Facebook. The Catch: I was trying to share a post with Facebook that had no thumbnail attached to it. I recently added a Facebook share icon to a clients site, but when I arrived at Facebook after clicking on it, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Need:</strong> The ability to control the thumbnail to be used when sharing a post with Facebook.</p>
<p><strong>The Catch:</strong> I was trying to share a post with Facebook that had no thumbnail attached to it. </p>
<p><span id="more-121"></span></p>
<p>I recently added a Facebook share icon to a clients site, but when I arrived at Facebook after clicking on it, the only thumbnail I was able to select from was an image that appeared sitewide in the sidebar (of course, I could always opt for not displaying an image at all).</p>
<p>The first thing that I needed to do was find a way to specify a thumbnail. To do so, we need to add the following piece of code to the HEAD section of the blog:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;image_src&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;IMAGE SOURCE&quot;</span> <span style="color: #339933;">/&gt;</span></pre></td></tr></table></div>

<p><strong>The Process:</strong></p>
<p>1. I wanted to check the post and see if there was already an image attached to it.<br />
2. For simplicity, I used the first image in the post.<br />
3. If there was an image attached to the post, then I&#8217;d want to use it as the thumbnail.<br />
4. I also have a default image set up in the event that no images are included in the post.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$szPostContent</span> <span style="color: #339933;">=</span> get_the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$szSearchPattern</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'~&lt;img [^\&gt;]*\ /&gt;~'</span><span style="color: #339933;">;</span>
<span style="color: #990000;">preg_match_all</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$szSearchPattern</span><span style="color: #339933;">,</span> <span style="color: #000088;">$szPostContent</span><span style="color: #339933;">,</span> <span style="color: #000088;">$aPics</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$iNumberOfPics</span> <span style="color: #339933;">=</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$aPics</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$iNumberOfPics</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$t1</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$aPics</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'src=&quot;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$t2</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$aPics</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&quot;'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$t1</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">6</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$pixt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$aPics</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$t1</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">5</span><span style="color: #339933;">,</span> <span style="color: #000088;">$t2</span> <span style="color: #339933;">-</span> <span style="color: #000088;">$t1</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;link rel=&quot;image_src&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$pixt</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">else</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;link rel=&quot;image_src&quot; href=&quot;IMAGE SOURCE&quot; /&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/tips/how-to-specify-a-facebook-thumbnail-when-sharing-a-post/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Publish2 JSON Feed Without A Plugin</title>
		<link>http://wordpressdevelopment.com/blog/tips/publish2-json-feed-without-a-plugin/</link>
		<comments>http://wordpressdevelopment.com/blog/tips/publish2-json-feed-without-a-plugin/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 20:33:49 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[Publish2]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=112</guid>
		<description><![CDATA[Need: A way to display the JSON data provided by Publish2 on a WordPress blog. The Catch: I wanted to have multiple instances of the feed from different JSON data feeds on the post. Furthermore, each required unique items from its respective JSON feed and I wanted to style each instance differently. What&#8217;s Available: Publish2 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Need:</strong> A way to display the JSON data provided by Publish2 on a WordPress blog. </p>
<p><strong>The Catch:</strong> I wanted to have multiple instances of the feed from different JSON data feeds on the post. Furthermore, each required unique items from its respective JSON feed and I wanted to style each instance differently.<br />
<span id="more-112"></span><br />
<strong>What&#8217;s Available:</strong> Publish2 has a great plugin out which would allow me to display the JSON feed via WordPress widget or directly in the template. However, I wanted something that was a little easier to control without the added bulk of a plugin.</p>
<p>Start by adding the following function to your theme&#8217;s functions.php file:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> wd_json_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'LINK TO JSON FEED HERE'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$ch</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_init</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POST<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_HEADER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">curl_setopt</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_exec</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$feedArrAll</span> <span style="color: #339933;">=</span> <span style="color: #990000;">json_decode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$feedArr</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array_slice</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$feedArrAll</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'items'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">return</span> <span style="color: #000088;">$feedArr</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Next, add the following code wherever you&#8217;d like to parse the Publish2 data feed (replace with a link to your JSON data feed and set the number of items to display):</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>
<span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> wd_json_feed<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'LINK TO JSON FEED HERE'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">3</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$item</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?=</span><span style="color: #000088;">$item</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'link'</span><span style="color: #009900;">&#93;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?=</span><span style="color: #000088;">$item</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'title'</span><span style="color: #009900;">&#93;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?=</span><span style="color: #000088;">$item</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'publication_name'</span><span style="color: #009900;">&#93;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>In the example above, I am displaying 3 items and getting the Link URL, Title, and Publication Name for each.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/tips/publish2-json-feed-without-a-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GoDaddy and Increasing Your WordPress Max Upload Size</title>
		<link>http://wordpressdevelopment.com/blog/tips/godaddy-increasing-wordpress-max-upload-size/</link>
		<comments>http://wordpressdevelopment.com/blog/tips/godaddy-increasing-wordpress-max-upload-size/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 10:34:12 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[GoDaddy]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=82</guid>
		<description><![CDATA[So I’ve never been crazy about GoDaddy’s hosting service, for a number of different reasons, but today I had an awesome experience with their customer service. A client of mine has a shared hosting account and they wanted to increase the Maximum File Upload size allowed in WordPress. He called GoDaddy and their support provided [...]]]></description>
			<content:encoded><![CDATA[<p>So I’ve never been crazy about GoDaddy’s hosting service, for a number of different reasons, but today I had an awesome experience with their customer service. A client of mine has a shared hosting account and they wanted to increase the Maximum File Upload size allowed in WordPress. He called GoDaddy and their support provided him with a link which directed him to modify the PHP.INI file through SSH.<br />
<span id="more-82"></span><br />
Considering he doesn’t even have an FTP client, SSH was going to be quite a stretch.</p>
<p>In any case, turns out you can upload your own PHP.INI file directly to the root folder and it works!</p>
<p>Here&#8217;s the download link for a PHP.INI file for PHP5: <a href="http://wordpressdevelopment.com/downloads/php5.zip">Download</a></p>
<p>The current values are set at 40MB, but you can adjust it by changing the following settings:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">upload_max_filesize <span style="color: #339933;">=</span> 40M
post_max_size <span style="color: #339933;">=</span> 40M</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/tips/godaddy-increasing-wordpress-max-upload-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Location Search By Zip Code</title>
		<link>http://wordpressdevelopment.com/blog/plugins/wordpress-location-search-by-zip-code/</link>
		<comments>http://wordpressdevelopment.com/blog/plugins/wordpress-location-search-by-zip-code/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 02:36:57 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Zip Code]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=65</guid>
		<description><![CDATA[Last week I completed a Worpress CMS conversion for a site that was running a custom Ruby on Rails CMS. Everything was pretty straightforward, only caveat was that they wanted to be able to search their 12K+ locations by zip code, paginate the results, and also display them as markers on a Google map. Here’s [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I completed a Worpress CMS conversion for a site that was running a custom Ruby on Rails CMS. Everything was pretty straightforward, only caveat was that they wanted to be able to search their 12K+ locations by zip code, paginate the results, and also display them as markers on a Google map.<br />
<span id="more-65"></span><br />
<a href="http://wordpressdevelopment.com/blog/plugins/wordpress-location-search-by-zip-code/attachment/corazonas_storelocator/" rel="attachment wp-att-95"><img src="http://wordpressdevelopment.com/blog/wp-content/uploads/2010/02/corazonas_storelocator-440x500.png" alt="" title="corazonas_storelocator" width="440" height="500" class="alignnone size-large wp-image-95" /></a></p>
<p><strong>Here’s the end result: <a href="http://eudgets.com/corazonas/store-locator/" rel="nofollow" target="blank">http://eudgets.com/corazonas/store-locator/</a></strong></p>
<p>If no locations show up in your zip code, try using 90049 to test it out.</p>
<p>The plugin uses some pretty straightforward admin functionality:</p>
<p><strong>Ability to upload a CSV file</strong> of the locations which is stored in a separate table. The budget didn’t allow much room for editing/viewing entries directly from the admin area, so in order to add/edit entries, the admin needs to re-upload a new CSV file…overwriting the contents of the database.</p>
<p><a rel="attachment wp-att-69" href="http://wordpressdevelopment.com/blog/plugins/wordpress-location-search-by-zip-code/attachment/csv_upload/"><img class="alignnone size-large wp-image-69" title="csv_upload" src="http://wordpressdevelopment.com/blog/wp-content/uploads/2010/02/csv_upload-499x230.png" alt="CSV Upload" width="450" height="207" /></a></p>
<p><strong>Ability to download the CSV file:</strong></p>
<p><a rel="attachment wp-att-70" href="http://wordpressdevelopment.com/blog/plugins/wordpress-location-search-by-zip-code/attachment/csv_download/"><img class="alignnone size-large wp-image-70" title="csv_download" src="http://wordpressdevelopment.com/blog/wp-content/uploads/2010/02/csv_download-500x209.png" alt="" width="450" height="188" /></a></p>
<p>The Javascript is handled by Prototype and the code is based on a watered down query I use over at PlanJam.com. Considering the number of locations being searched and having to plot the results on a map&#8230;it&#8217;s pretty quick!</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/plugins/wordpress-location-search-by-zip-code/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress Calendar Plugin: Display Posts By Date &amp; Category</title>
		<link>http://wordpressdevelopment.com/blog/plugins/wordpress-calendar-posts-by-date-category/</link>
		<comments>http://wordpressdevelopment.com/blog/plugins/wordpress-calendar-posts-by-date-category/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 00:17:41 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=55</guid>
		<description><![CDATA[In my ongoing effort of not re-inventing the wheel, I spent hours upon hours looking through ALL of the available WordPress calendar plugins for a project that I had been working on. My Needs: AJAX (required asynchronous navigation between months) Query posts by category (would be nice if I could select the category) Associate posts [...]]]></description>
			<content:encoded><![CDATA[<p>In my ongoing effort of not re-inventing the wheel, I spent hours upon hours looking through ALL of the available WordPress calendar plugins for a project that I had been working on.</p>
<p>My Needs:</p>
<ol>
<li>AJAX (required asynchronous navigation between months)</li>
<li>Query posts by category (would be nice if I could select the category)</li>
<li> Associate posts with their dates.</li>
<li>Highlight calendar date when a post exists.</li>
<li>A tooltip that would display post titles and link to individual posts (past, current, and future) when a highlighted date is selected.</li>
</ol>
<p><strong>Note:</strong> The tooltip would also allow me to display multiple posts per day should that be the case.<br />
<span id="more-55"></span><br />
The closest thing I was able to come across was the AJAX Calendar by Urban Giraffe, but it returned posts by month and linked to a daily archive if a post existed, instead of the post itself. Kind of close, but not what I needed.</p>
<p>So what’s a guy to do? I gave it a good fight, but I had to make one from scratch.</p>
<p>You can see it in action on the home page sidebar (in rough form)…it’s set up as a widget for now and displaying all posts from the Tips category.</p>
<p>I ended up modifying both the look and functionality once I integrated it onto my clients site: <strong><a href="http://trakkersgps.com/blog/" target="blank">http://trakkersgps.com/blog/</a></strong></p>
<p><img src="http://wordpressdevelopment.com/blog/wp-content/uploads/2010/02/wordpress_post_category_calendar.png" alt="" title="wordpress_post_category_calendar" width="342" height="348" class="alignnone size-full wp-image-110" /></p>
<p>This one took quite a bit of time, but it’s by far the most intricate WordPress site I’ve had the pleasure to work on. And I had a great time doing it!</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/plugins/wordpress-calendar-posts-by-date-category/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Favorite Lightbox For Images and Video</title>
		<link>http://wordpressdevelopment.com/blog/javascript/favorite-js-lightbox-for-images-and-video/</link>
		<comments>http://wordpressdevelopment.com/blog/javascript/favorite-js-lightbox-for-images-and-video/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 23:38:01 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Lightbox]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Prototype]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=51</guid>
		<description><![CDATA[Last year I was working on a project that was utilizing the jQuery Cycle plugin for a slideshow and I was struggling to find a compatible jQuery lightbox script which would play FLV videos hosted on the same server (with a built in media player). Unfortunately, the best one I came across was written in [...]]]></description>
			<content:encoded><![CDATA[<p>Last year I was working on a project that was utilizing the jQuery Cycle plugin for a slideshow and I was struggling to find a compatible jQuery lightbox script which would play FLV videos hosted on the same server (with a built in media player). Unfortunately, the best one I came across was written in MooTools which would&#8217;ve led to conflicts. Worried that I would have to re-write the slideshow using MooTools or calling jQuery.noConflict() which I hate, I was relived when I stumbled upon <a href="http://www.shadowbox-js.com/" target="blank">Shadowbox.js</a>, a lightbox style Media Viewer which was compatible with major JS frameworks like Prototype, jQuery, and MooTools. In addition to being incredibly easy to install (when compared to other lightbox scripts), it&#8217;s automatically adapts to whatever Javascript framework is being used! Best of all, no conflicts! It also does images, galleries, embedded video, and tons more.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/javascript/favorite-js-lightbox-for-images-and-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying YouTube Thumbails in Your WordPress Posts</title>
		<link>http://wordpressdevelopment.com/blog/tips/displaying-youtube-thumbails-in-your-wordpress-posts/</link>
		<comments>http://wordpressdevelopment.com/blog/tips/displaying-youtube-thumbails-in-your-wordpress-posts/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 20:49:52 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Thumbnail]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=44</guid>
		<description><![CDATA[Since I already wrote the snippet of code to get the thumbnails from the embedded Vimeo video, I thought I might as well do the same for YouTube. It will search through your posts&#8217; content for YouTube embed code and will generate a thumbnail for you. It&#8217;s not fancy but it gets the job done. [...]]]></description>
			<content:encoded><![CDATA[<p>Since I already wrote the snippet of code to get the thumbnails from the embedded Vimeo video, I thought I might as well do the same for YouTube. It will search through your posts&#8217; content for YouTube embed code and will generate a thumbnail for you. It&#8217;s not fancy but it gets the job done.<br />
<span id="more-44"></span></p>
<p>So there are 2 types of YouTube URL&#8217;s that I&#8217;ve come across and here&#8217;s the code to deal with each (note: my code adds a link to the post)</p>
<p><strong>http://www.youtube.com/watch?v=VIDEOID</strong> &#8211; <em>YouTube URL&#8217;s added directly to a WordPress post/page.</em></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$link</span> <span style="color: #339933;">=</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sourcestring</span> <span style="color: #339933;">=</span> get_the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #990000;">preg_match</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/http\:\/\/www\.youtube\.com\/watch\?v=([\w-]{11})/'</span><span style="color: #339933;">,</span><span style="color: #000088;">$sourcestring</span><span style="color: #339933;">,</span><span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #000088;">$youtube_video_id</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;a href='</span><span style="color: #339933;">.</span><span style="color: #000088;">$link</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&gt;&lt;img src=&quot;http://img.youtube.com/vi/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$youtube_video_id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/0.jpg&quot;&gt;&lt;/a&gt;'</span><span style="color: #339933;">;</span> 
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p><strong>http://www.youtube.com/v/VIDEOID</strong> &#8211; <em>YouTube URL&#8217;s used in the embed code</em></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$link</span> <span style="color: #339933;">=</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sourcestring</span> <span style="color: #339933;">=</span> get_the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">preg_match</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'~(?&lt;=www\.youtube\.com/v/)[^&amp;?]*~'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$sourcestring</span><span style="color: #339933;">,</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$youtube_video_id</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;a href='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$link</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&gt;&lt;img style=&quot;width:440px;&quot; src=&quot;http://img.youtube.com/vi/'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$youtube_video_id</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/0.jpg&quot;&gt;&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Just add this anywhere <strong>inside the loop</strong></p>
<p>Again, nothing fancy but it gets the job done!</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/tips/displaying-youtube-thumbails-in-your-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying Vimeo Thumbnails In Your Blog Post or Archive</title>
		<link>http://wordpressdevelopment.com/blog/tips/displaying-vimeo-thumbnails-in-your-blog-post-or-archive/</link>
		<comments>http://wordpressdevelopment.com/blog/tips/displaying-vimeo-thumbnails-in-your-blog-post-or-archive/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 20:36:54 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Thumbnail]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Vimeo]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=36</guid>
		<description><![CDATA[With WordPress 2.9, you can now embed videos by simply pasting the URL into your blog post and have it create the embed code. I was using Vimeo and wanted to pull the thumbnail associated with the Vimeo video which was embedded in my posts. Here&#8217;s how: 1 2 3 4 5 6 7 8 [...]]]></description>
			<content:encoded><![CDATA[<p>With WordPress 2.9, you can now embed videos by simply pasting the URL into your blog post and have it create the embed code. I was using Vimeo and wanted to pull the thumbnail associated with the Vimeo video which was embedded in my posts.<br />
<span id="more-36"></span><br />
Here&#8217;s how:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$postid</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sourcestring</span> <span style="color: #339933;">=</span> get_the_content<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postid</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">preg_match</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/http:\/\/vimeo.com\/(\d+)$/'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$sourcestring</span><span style="color: #339933;">,</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$vimeo_id</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$hash</span> <span style="color: #339933;">=</span> <span style="color: #990000;">unserialize</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://vimeo.com/api/v2/video/<span style="color: #006699; font-weight: bold;">$vimeo_id</span>.php&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$hash</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'thumbnail_large'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; alt=&quot;&quot; /&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>You can get the thumbnails in 3 different sizes: small, medium and large. </p>
<p><strong>Small</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$hash</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'thumbnail_small'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; alt=&quot;&quot; /&gt;</pre></td></tr></table></div>

<p><strong>Medium</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$hash</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'thumbnail_medium'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; alt=&quot;&quot; /&gt;</pre></td></tr></table></div>

<p><strong>Large</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$hash</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'thumbnail_large'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; alt=&quot;&quot; /&gt;</pre></td></tr></table></div>

<p>I&#8217;ll probably get around to writing a function for it later.</p>
<p><em>Thanks to Eugene Gimelberg for the tip!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/tips/displaying-vimeo-thumbnails-in-your-blog-post-or-archive/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Favorite Internet Explorer 6 PNG Fix</title>
		<link>http://wordpressdevelopment.com/blog/tips/favorite-internet-explorer-6-png-fix/</link>
		<comments>http://wordpressdevelopment.com/blog/tips/favorite-internet-explorer-6-png-fix/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 21:26:22 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[PNG]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=27</guid>
		<description><![CDATA[Rarely will you find the words &#8220;Favorite&#8221; and Internet Explorer 6 in the same sentence&#8230;it has been the bane of my existence ever since I began in Web Development. If I had my way I would make it illegal to even run a copy of IE6&#8230;not a far stretch considering all the pain and suffering [...]]]></description>
			<content:encoded><![CDATA[<p>Rarely will you find the words &#8220;Favorite&#8221; and Internet Explorer 6 in the same sentence&#8230;it has been the bane of my existence ever since I began in Web Development. If I had my way I would make it illegal to even run a copy of IE6&#8230;not a far stretch considering all the pain and suffering developers have had to endure over the years. One of the MANY issues plaguing IE6 is it&#8217;s inability to deal with transparent PNG images. Instead of listing out all of the PNG solutions available (there are dozens)&#8230;I&#8217;ll just let you in on what I&#8217;ve found to work best: </p>
<p><strong><a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/">DD_belatedPNG</a></strong></p>
<p>It&#8217;s not perfect but it has been an invaluable tool in this ongoing battle. Yes Javascript would need to be enabled, but at some point we need to take a stand and say NO to visitors that insist on running IE6 with JS disabled while viewing the site on a 15&#8221; 800&#215;600 CRT monitor. </p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/tips/favorite-internet-explorer-6-png-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogger Image Import – Reloaded</title>
		<link>http://wordpressdevelopment.com/blog/plugins/blogger-image-import-reloaded/</link>
		<comments>http://wordpressdevelopment.com/blog/plugins/blogger-image-import-reloaded/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 01:17:59 +0000</pubDate>
		<dc:creator>Ron Z</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Import]]></category>

		<guid isPermaLink="false">http://wordpressdevelopment.com/blog/?p=16</guid>
		<description><![CDATA[A few months back I was working on a large Blogger to WordPress conversion and had to import thousands of images over to a hosted WordPress installation. The import went smoothly but the images that came over with the posts were still hosted by blogger. Going through all of the posts and uploading all over [...]]]></description>
			<content:encoded><![CDATA[<p>A few months back I was working on a large Blogger to WordPress conversion and had to import thousands of images over to a hosted WordPress installation. The import went smoothly but the images that came over with the posts were still hosted by blogger. Going through all of the posts and uploading all over again was not an option so I quickly searched online for any existing plugins that would allow me to:<br />
<span id="more-16"></span><br />
1) Search through all WordPress posts for images hosted by blogger.com<br />
2) Download the images to the server<br />
3) Go through and update all posts to point to the new image location on the server.</p>
<p>I came across a great plugin <a href="http://notions.okuda.ca/wordpress-plugins/blogger-image-import/">here</a> that did just that, but unfortunately, it was a bit outdated and wasn&#8217;t working.</p>
<p>In addition to fixing the issue with the plugin, I added a little more functionality including:</p>
<p>1. The ability to import images with multiple file extensions.</p>
<p>2. The ability to specify the URL for images being imported.</p>
<p>You can download my version of the plugin here: <a onclick="pageTracker._trackEvent('Plugin', 'Download', 'Blogger Image Import - Reloaded');" href="http://wordpressdevelopment.com/downloads/blogger-image-import_wd.zip">http://wordpressdevelopment.com/downloads/blogger-image-import_wd.zip</a></p>
<p>Installation is pretty straight forward:</p>
<p>1. Upload the plugin to your wp-content/plugins/ directory<br />
2. Activate the plugin<br />
3. Access the plugin settings through the settings menu.<br />
4. Select the number of images you&#8217;d like to import and specify the URL that should be searched for (don&#8217;t include http:// or http://www.)<br />
5. A folder called &#8220;/image-import&#8221; is created in your upload directory and all images will be saved there.</p>
<p>NOTE: The plugin makes permanent changes to your WordPress database so make sure that you make a BACKUP before starting.</p>
<p>I have tested the plugin with WordPress 2.9 and it works great. I have a really busy schedule and will not be able to offer any ongoing support for the plugin. However, I do occasionally use the plugin and I will gladly update it should any issues arise and I make changes to it.</p>
<p><span style="color: #ff0000;">As of writing this post, the original author has updated the plugin, but I have yet to test it out.</span></p>
<p><strong>UPDATE: 4/20/2010</strong></p>
<p><em>Updated plugin to replace the image URL to Blogger with the copy stored on your server.</em> </p>
<p><strong>UPDATE: 7/8/2010</strong></p>
<p><em>Updated plugin to function properly with WordPress 3.0</em> </p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdevelopment.com/blog/plugins/blogger-image-import-reloaded/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
	</channel>
</rss>

