<?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>Daniel Imhoff</title>
	<atom:link href="http://www.danielimhoff.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danielimhoff.com</link>
	<description>The passions, discoveries and egotistical run ons of a web developer.</description>
	<lastBuildDate>Thu, 29 Mar 2012 14:23:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>DrupalCon Denver 2012</title>
		<link>http://www.danielimhoff.com/2012/03/25/drupalcon-denver-2012/</link>
		<comments>http://www.danielimhoff.com/2012/03/25/drupalcon-denver-2012/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 02:36:41 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[denver]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[drupalcon]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=155</guid>
		<description><![CDATA[The in-US Drupal Convention this year was held in the beautiful mile-high city of Denver, Colorado. This was only my second convention, so I was by and large an observer. I listened to some excellent sessions, particularly &#8220;Tame the Burrito&#8221; &#8230; <a href="http://www.danielimhoff.com/2012/03/25/drupalcon-denver-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The in-US Drupal Convention this year was held in the beautiful mile-high city of Denver, Colorado. This was only my second convention, so I was by and large an observer. I listened to some excellent sessions, particularly &#8220;Tame the Burrito&#8221; by Jeff Eaton, &#8220;Using Sass &amp; Compass in Drupal Theming&#8221; by Nathan Smith and Matt Farina, and &#8220;Drupal 8 Meets Symfony2&#8243; by Fabien Potencier.</p>
<p>I got to talk with <a href="http://www.palantir.net/about/team/ken-rickard">Ken Rickard</a> of Palantir and <a href="http://technosophos.com/">Matt Butcher</a> of HP. Luckily, Matt has been working on an interesting project called <a href="https://github.com/technosophos/querypath">QueryPath</a> that may help my University&#8217;s migration from a static HTML site (with over 90,000 pages) to Drupal. FSM, light my path!</p>
<p>Since we arrived earlier and departed later, I took the opportunity to take pictures around the many gorgeous locations Colorado has to offer. We went as far as Colorado Springs and Estes Park.</p>
<p>See my updated photostream from the trip: <a href="http://www.flickr.com/photos/dwieeb/">http://www.flickr.com/photos/dwieeb/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2012/03/25/drupalcon-denver-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photostream Updated</title>
		<link>http://www.danielimhoff.com/2011/11/03/photostream-updated/</link>
		<comments>http://www.danielimhoff.com/2011/11/03/photostream-updated/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 05:51:30 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=148</guid>
		<description><![CDATA[No, I haven&#8217;t been slacking with my photography. I&#8217;ve been taking pictures, I just haven&#8217;t had time to add them to Flickr. Check out my new pictures! http://www.flickr.com/photos/dwieeb/]]></description>
			<content:encoded><![CDATA[<p>No, I haven&#8217;t been slacking with my photography. I&#8217;ve been taking pictures, I just haven&#8217;t had time to add them to Flickr. Check out my new pictures! <a href="http://www.flickr.com/photos/dwieeb/">http://www.flickr.com/photos/dwieeb/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2011/11/03/photostream-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pass Foreach Variables by Reference (PHP)</title>
		<link>http://www.danielimhoff.com/2011/11/01/pass-foreach-variables-by-reference-php/</link>
		<comments>http://www.danielimhoff.com/2011/11/01/pass-foreach-variables-by-reference-php/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 00:13:29 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[foreach]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=143</guid>
		<description><![CDATA[A recent trick I discovered while working on a Drupal module is the ability to pass the array element into a foreach loop by reference. Like so: Your output would be: Not only does this save on memory, it also &#8230; <a href="http://www.danielimhoff.com/2011/11/01/pass-foreach-variables-by-reference-php/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A recent trick I discovered while working on a Drupal module is the ability to pass the array element into a foreach loop by reference. Like so:</p>
<pre class="brush: php; title: ; notranslate">$array = array(1, 2, 3, 4, 5);

foreach ($array as &amp;$element) {
  if ($element == 3)
    $element = 6;
}

print_r($array);
</pre>
<p>Your output would be:</p>
<pre class="brush: plain; title: ; notranslate">Array
(
    [0] =&gt; 1
    [1] =&gt; 2
    [2] =&gt; 6
    [3] =&gt; 4
    [4] =&gt; 5
)
</pre>
<p>Not only does this save on memory, it also allows you to change the actual items in the array. Quite useful.</p>
<p>Another example:</p>
<pre class="brush: php; title: ; notranslate">$array = array(
  'cow' =&gt; 'moo',
  'pig' =&gt; 'oink',
  'cat' =&gt; 'meow',
);

foreach ($array as $key =&gt; &amp;$element) {
  if ($key == 'cat')
    $element = 'bark!';
}

print_r($array);
</pre>
<p>Output:</p>
<pre class="brush: plain; title: ; notranslate">Array
(
    [cow] =&gt; moo
    [pig] =&gt; oink
    [cat] =&gt; bark!
)</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2011/11/01/pass-foreach-variables-by-reference-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Florida Photography</title>
		<link>http://www.danielimhoff.com/2011/01/22/florida-photography/</link>
		<comments>http://www.danielimhoff.com/2011/01/22/florida-photography/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 08:25:14 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[florida]]></category>
		<category><![CDATA[florida2011]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=111</guid>
		<description><![CDATA[View the photostream.]]></description>
			<content:encoded><![CDATA[<div id="flickr_florida2011_876" class="slickr-flickr-gallery"><ul><li class="active"><a rel="shadowbox[876]" href="http://farm7.staticflickr.com/6142/6000614992_f1d979f6e4.jpg" title="The Sailboat"><img src="http://farm7.staticflickr.com/6142/6000614992_f1d979f6e4_s.jpg" alt="" title="The Sailboat" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5244/5376887367_72c66169cf.jpg" title="The Eye of The Pelican"><img src="http://farm6.staticflickr.com/5244/5376887367_72c66169cf_s.jpg" alt="" title="The Eye of The Pelican" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5285/5377486168_4d6780c806.jpg" title="Flamigo Dance"><img src="http://farm6.staticflickr.com/5285/5377486168_4d6780c806_s.jpg" alt="" title="Flamigo Dance" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5165/5377483176_d17033cbf7.jpg" title="The Parrot on The Log"><img src="http://farm6.staticflickr.com/5165/5377483176_d17033cbf7_s.jpg" alt="" title="The Parrot on The Log" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5009/5376880015_e42f43689c.jpg" title="Two Birds"><img src="http://farm6.staticflickr.com/5009/5376880015_e42f43689c_s.jpg" alt="" title="Two Birds" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5168/5377478626_04dcef14b4.jpg" title="Three Meerkats"><img src="http://farm6.staticflickr.com/5168/5377478626_04dcef14b4_s.jpg" alt="" title="Three Meerkats" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5243/5376875007_6b8615197c.jpg" title="The Squirrel in The Tree"><img src="http://farm6.staticflickr.com/5243/5376875007_6b8615197c_s.jpg" alt="" title="The Squirrel in The Tree" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5201/5377472390_1577bafe80.jpg" title="The Sunset behind The Clouds"><img src="http://farm6.staticflickr.com/5201/5377472390_1577bafe80_s.jpg" alt="" title="The Sunset behind The Clouds" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5242/5377470078_b0c96f9e9a.jpg" title="Two Flamingos"><img src="http://farm6.staticflickr.com/5242/5377470078_b0c96f9e9a_s.jpg" alt="" title="Two Flamingos" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5128/5376865691_74f8ddb683.jpg" title="Pink Pedals"><img src="http://farm6.staticflickr.com/5128/5376865691_74f8ddb683_s.jpg" alt="" title="Pink Pedals" /></a></li><li><a rel="shadowbox[876]" href="http://farm6.staticflickr.com/5041/5376863221_0e70999648.jpg" title="The Egrit on The Rock"><img src="http://farm6.staticflickr.com/5041/5376863221_0e70999648_s.jpg" alt="" title="The Egrit on The Rock" /></a></li></ul></div><div style="clear:both"></div>
<p>View the <a href="http://www.flickr.com/photos/dwieeb/tags/florida2011/">photostream</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2011/01/22/florida-photography/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Year Photography</title>
		<link>http://www.danielimhoff.com/2011/01/10/new-year-photography/</link>
		<comments>http://www.danielimhoff.com/2011/01/10/new-year-photography/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 09:36:51 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[newyear]]></category>
		<category><![CDATA[newyear2011]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=101</guid>
		<description><![CDATA[Here are some pictures I took on New Year&#8217;s day and in January. View the photostream.]]></description>
			<content:encoded><![CDATA[<p>Here are some pictures I took on New Year&#8217;s day and in January.</p>
<div id="flickr_newyear2011_725" class="slickr-flickr-gallery"><ul><li class="active"><a rel="shadowbox[725]" href="http://farm6.staticflickr.com/5088/5376860941_8c1e25904b.jpg" title="The Eagle and The Flag"><img src="http://farm6.staticflickr.com/5088/5376860941_8c1e25904b_s.jpg" alt="" title="The Eagle and The Flag" /></a></li><li><a rel="shadowbox[725]" href="http://farm6.staticflickr.com/5043/5376856145_33bdfeb75b.jpg" title="Clock"><img src="http://farm6.staticflickr.com/5043/5376856145_33bdfeb75b_s.jpg" alt="" title="Clock" /></a></li></ul></div><div style="clear:both"></div>
<p>View the <a href="http://www.flickr.com/photos/dwieeb/tags/newyear2011/">photostream</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2011/01/10/new-year-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New WordPress Plugin: ScrollTo Top</title>
		<link>http://www.danielimhoff.com/2011/01/10/new-wordpress-plugin-scrollto-top/</link>
		<comments>http://www.danielimhoff.com/2011/01/10/new-wordpress-plugin-scrollto-top/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 09:17:18 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=98</guid>
		<description><![CDATA[Today I squeezed out a little plugin that will show a go-to-top icon in the corner of the page. When clicked, it will smoothly scroll the user&#8217;s browser to the top of the page using Ariel Flesler&#8216;s ScrollTo jQuery plugin. &#8230; <a href="http://www.danielimhoff.com/2011/01/10/new-wordpress-plugin-scrollto-top/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I squeezed out a little plugin that will show a go-to-top icon in the corner of the page. When clicked, it will smoothly scroll the user&#8217;s browser to the top of the page using <a href="http://flesler.blogspot.com/">Ariel Flesler</a>&#8216;s ScrollTo jQuery plugin. The plugin comes with a few options to tweak it, like choosing or uploading your own icon, where the icon appears, etc.</p>
<p>I have yet to write a showcase page for it on this website, but you <a href="http://wordpress.org/extend/plugins/scrollto-top/">check out the plugin page on WordPress.org</a> and download now: <a href="http://wordpress.org/extend/plugins/scrollto-top/">http://wordpress.org/extend/plugins/scrollto-top/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2011/01/10/new-wordpress-plugin-scrollto-top/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Specific Files 1.3 Released</title>
		<link>http://www.danielimhoff.com/2010/12/21/specific-files-1-3-released/</link>
		<comments>http://www.danielimhoff.com/2010/12/21/specific-files-1-3-released/#comments</comments>
		<pubDate>Tue, 21 Dec 2010 09:36:00 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=61</guid>
		<description><![CDATA[The major change in this new version is the ability to apply Specific Files to all post types (including custom post types) or just apply it to posts and pages like it was originally made to do. I have also &#8230; <a href="http://www.danielimhoff.com/2010/12/21/specific-files-1-3-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The major change in this new version is the ability to apply Specific Files to all post types (including <em>custom</em> post types) or just apply it to posts and pages like it was originally made to do.</p>
<p>I have also relocated the Specific Files file directory to /wp-content/specific-files, where it should be easier to maintain (rather than copying the file directory into a temporary location while the plugin updates and when it finishes updating to copy it all back again). Because of this change, I have removed the available downloads of previous versions. I&#8217;m still rather new to how to handle plugin upgrades and I&#8217;m sure a few of you have gotten errors while trying to upgrade this plugin. For that I am sorry. I&#8217;ll get better at this stuff.</p>
<p>So &#8211; that&#8217;s my announcement. Download now! <a href="http://wordpress.org/extend/plugins/specific-files-for-posts-and-pages/">http://wordpress.org/extend/plugins/specific-files-for-posts-and-pages/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2010/12/21/specific-files-1-3-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Specific Files 1.2 Released</title>
		<link>http://www.danielimhoff.com/2010/12/16/specific-files-1-2-released/</link>
		<comments>http://www.danielimhoff.com/2010/12/16/specific-files-1-2-released/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 09:14:00 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=46</guid>
		<description><![CDATA[Quite a few things have changed since the original 1.1 release. I&#8217;m going to focus on the changes between 1.1.3 and 1.2: I have added the ability to include inline CSS and JavaScript. This nifty feature lets you write inline &#8230; <a href="http://www.danielimhoff.com/2010/12/16/specific-files-1-2-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Quite a few things have changed <a href="http://wordpress.org/extend/plugins/specific-files-for-posts-and-pages/changelog/">since the original 1.1 release</a>. I&#8217;m going to focus on the changes between 1.1.3 and 1.2:</p>
<ul>
<li>I have added the ability to include inline CSS and JavaScript. This nifty feature <a href="http://www.danielimhoff.com/wp-content/uploads/2010/12/screenshot-3.jpg"><img class="alignright size-thumbnail wp-image-48" title="screenshot-3" src="http://www.danielimhoff.com/wp-content/uploads/2010/12/screenshot-3-150x150.jpg" alt="" width="150" height="150" /></a>lets you write inline code in the header of certain pages and posts. Handy for people who can&#8217;t stand using the WordPress page editor to get that darned jQuery plugin working!</li>
<li>I have added the ability to hide these new advanced options. Simple folk may not need such high-tech gear. Plus, the WordPress page editor is busy enough, why add a few lines if you&#8217;re not going to use them?</li>
<li>I have improved security. Just a few permission and nonce checks before executing some code ought&#8217;a do!<a href="http://www.danielimhoff.com/wp-content/uploads/2010/12/screenshot-21.jpg"><img class="alignleft size-thumbnail wp-image-50" title="screenshot-2" src="http://www.danielimhoff.com/wp-content/uploads/2010/12/screenshot-21-150x150.jpg" alt="" width="150" height="150" /></a></li>
<li>I have improved the filename scrubber. In 1.1.3, it didn&#8217;t even scrub out commas! Can you imagine a comma separated list of files with commas in the filenames? It would be a disaster! 1.2 fixes this, among other filename sanitation techniques.</li>
<li>I have upgraded the screenshots for people to preview before they download. You can find them here: <a href="http://wordpress.org/extend/plugins/specific-files-for-posts-and-pages/screenshots/">http://wordpress.org/extend/plugins/specific-files-for-posts-and-pages/screenshots/</a></li>
</ul>
<p>Download now! <a href="http://wordpress.org/extend/plugins/specific-files-for-posts-and-pages/">http://wordpress.org/extend/plugins/specific-files-for-posts-and-pages/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2010/12/16/specific-files-1-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Donation Page is Up!</title>
		<link>http://www.danielimhoff.com/2010/12/13/donation-page-is-up/</link>
		<comments>http://www.danielimhoff.com/2010/12/13/donation-page-is-up/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 22:24:16 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=42</guid>
		<description><![CDATA[I&#8217;ve put up a donation page just like every other WordPress plugin author. If you like my first WordPress plugin, please consider donating]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve put up a <a href="http://www.danielimhoff.com/donations/">donation page</a> just like every other WordPress plugin author. If you like my first WordPress plugin, please consider donating <img src='http://www.danielimhoff.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2010/12/13/donation-page-is-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New WordPress Plugin: Specific Files</title>
		<link>http://www.danielimhoff.com/2010/12/10/new-wordpress-plugin-specific-files/</link>
		<comments>http://www.danielimhoff.com/2010/12/10/new-wordpress-plugin-specific-files/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 22:15:50 +0000</pubDate>
		<dc:creator>dwieeb</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.danielimhoff.com/?p=28</guid>
		<description><![CDATA[I&#8217;ve created a new WordPress plugin that makes it easy for users to include specific CSS or JS files in certain posts or pages by using an easy-select meta box in the WordPress editor. There are similar plugins out there, &#8230; <a href="http://www.danielimhoff.com/2010/12/10/new-wordpress-plugin-specific-files/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve created a new WordPress plugin that makes it easy for users to include specific CSS or JS files in certain posts or pages by using an easy-select meta box in the WordPress editor.</p>
<p>There are similar plugins out there, but my plugin was written ground-up for ease of use. Take a look at the <a href="http://www.danielimhoff.com/wordpress-plugins/specific-files/">showcase page</a> I made for it and <a href="http://www.danielimhoff.com/wordpress-plugins/specific-files/">check it out for yourself</a>!</p>
<p>I&#8217;ve submitted it to the WordPress plugin public repository but I&#8217;m still awaiting an approval. I heard it could take several days or even a week before they approve new plugins&#8230;which doesn&#8217;t really make sense to me because they aren&#8217;t approving the plugin at all&#8230;they&#8217;re approving the title and description that I wrote for them.</p>
<p>I&#8217;ll keep you all updating when/if it gets added.</p>
<p><strong>December 11th Edit</strong>: Woot! They added it: <a href="http://wordpress.org/extend/plugins/specific-files-for-posts-and-pages/">http://wordpress.org/extend/plugins/specific-files-for-posts-and-pages/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielimhoff.com/2010/12/10/new-wordpress-plugin-specific-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

