<?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>Austin Matzko&#039;s Blog &#187; plugin</title>
	<atom:link href="http://austinmatzko.com/tag/plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://austinmatzko.com</link>
	<description>A blog about philosophy, Christianity, web development and whatever else I feel like writing about.</description>
	<lastBuildDate>Wed, 16 Mar 2011 17:14:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2-RC4-18391</generator>
		<item>
		<title>New Plugin: WP Delayed Email</title>
		<link>http://austinmatzko.com/2010/05/14/new-plugin-wp-delayed-email/</link>
		<comments>http://austinmatzko.com/2010/05/14/new-plugin-wp-delayed-email/#comments</comments>
		<pubDate>Fri, 14 May 2010 16:03:30 +0000</pubDate>
		<dc:creator>filosofo</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wp-delayed-mail]]></category>
		<category><![CDATA[wp_mail]]></category>

		<guid isPermaLink="false">http://austinmatzko.com/?p=647</guid>
		<description><![CDATA[I needed a way to send an email in the future, so I came up with WP Delayed Email. Activate the plugin, and you can call wp_delayed_mail() just like you would wp_mail(), except that you pass a timestamp argument for the time you want the email to be sent.]]></description>
			<content:encoded><![CDATA[<p>I needed a way to send an email in the future, so I came up with <a href="/wordpress-plugins/wp-delayed-mail/">WP Delayed Email</a>.  Activate the plugin, and you can call <code>wp_delayed_mail()</code> just like you would <code>wp_mail()</code>, except that you pass a timestamp argument for the time you want the email to be sent.</p>
]]></content:encoded>
			<wfw:commentRss>http://austinmatzko.com/2010/05/14/new-plugin-wp-delayed-email/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>New WordPress Plugin: Custom Image Sizes</title>
		<link>http://austinmatzko.com/2010/03/11/plugin-creates-wordpress-thumbnails-on-demand/</link>
		<comments>http://austinmatzko.com/2010/03/11/plugin-creates-wordpress-thumbnails-on-demand/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 04:29:22 +0000</pubDate>
		<dc:creator>filosofo</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://ilfilosofo.com/?p=593</guid>
		<description><![CDATA[I make a lot of WordPress themes, and frequently clients want to associate a particular size of image with a post. You can do this easily with WordPress by using add_image_size() to define an image and then by calling wp_get_attachment_image() later to print the markup for that image. So for example, if I have an [...]]]></description>
			<content:encoded><![CDATA[<p>I make a lot of WordPress themes, and frequently clients want to associate a particular size of image with a post.  You can do this easily with WordPress by using <code>add_image_size()</code> to define an image and then by calling <code>wp_get_attachment_image()</code> later to print the markup for that image.</p>
<p>So for example, if I have an attachment image of ID number 123, I might do something like the following:</p>
<pre>

add_image_size( 'my-custom-size', 220, 180, true );
...
echo wp_get_attachment_image( 123, 'my-custom-size' );
</pre>
<p>Here, <code>add_image_size()</code> defines the custom thumbnail (in this example the arguments tell <code>add_image_size()</code> to make it 220 pixels wide, 180 high, and cropped), and </p>
<pre>echo wp_get_attachment_image()</pre>
<p>prints the markup of the image itself, <code>&lt;img&gt;</code> element and everything.</p>
<h3>The Problem</h3>
<p>This works great; WordPress even creates thumbnails in this size from now on.  The problem is that it doesn&#8217;t apply to pre-existing thumbnails.  And if people change their minds about what sizes they want their thumbnails to be (clients sometimes change their minds) you&#8217;re stuck with existing thumbnails of the wrong size.</p>
<p>In addition, if you call <code>wp_get_attachment_image( 123, 'my-custom-size' );</code> and that size doesn&#8217;t exist, WordPress just scales down the larger-sized original image, which might cause some performance issues.</p>
<h3>Solution: Custom Image Sizes</h3>
<p>My solution is the <a href="/blog/wordpress-plugins/filosofo-custom-image-sizes/">Custom Image Sizes plugin</a>.  You activate it, and if you call <code>wp_get_attachment_image()</code> and related functions for an attachment that doesn&#8217;t have that size, WordPress will create it on demand.</p>
<p>As a bonus, if you pass a width and height of the desired image to <code>wp_get_attachment_image()</code> (and related functions), you can create any size image.  So for example I could create a thumbnail 50 pixels wide by 40 high of attachment 123 with the following code, where <code>'50x40'<code> is <code>'[width]x[height]'</code>:</p>
<pre>

echo wp_get_attachment_image( 123, '50x40' );
</pre>
<h3>Download</h3>
<p>You can <a href="/blog/wordpress-plugins/filosofo-custom-image-sizes/">download the Custom Image Sizes plugin here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://austinmatzko.com/2010/03/11/plugin-creates-wordpress-thumbnails-on-demand/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: GZIP Pages</title>
		<link>http://austinmatzko.com/2008/02/22/wordpress-gzip-plugin/</link>
		<comments>http://austinmatzko.com/2008/02/22/wordpress-gzip-plugin/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 17:46:58 +0000</pubDate>
		<dc:creator>filosofo</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.ilfilosofo.com/?p=432</guid>
		<description><![CDATA[WordPress 2.5 is being released in less than three weeks. While it has a lot of exciting new features, it is also missing a feature that&#8217;s been part of WordPress for a while: the option to compress page content for browsers that support compression. Up to version 2.3.3 of WordPress, you could select this option [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.5 is being released in less than three weeks.  While it has a lot of exciting new features, it is also missing a feature that&#8217;s been part of WordPress for a while: the option to compress page content for browsers that support compression.  Up to version 2.3.3 of WordPress, you could select this option in the admin menu under Options > Reading: </p>
<p><img src="http://www.ilfilosofo.com/wp-content/uploads/gzipping_233.jpg" alt="" title="gzipping_233" width="500" height="198" class="align-none size-medium attachment wp-att-433" /></p>
<p>I&#8217;ve found that letting WordPress gzip pages significantly improves performance, typically slashing the size of the text to a fourth.  For my <a href="/">home page</a>, that&#8217;s a 30% reduction of <em>total</em> page size&#8212;including images, ads, etc.  A 30% reduction in bandwidth is nothing to sniff at.</p>
<p>So I&#8217;ve written a little plugin to restore the gzip compression for WordPress blogs.  It&#8217;s not necessary if you&#8217;re using WordPress 2.3.3 or earlier, but you can go ahead and install it for previous versions in anticipation of upgrading, as it won&#8217;t cause any conflicts.  </p>
<h3>Download</h3>
<h4>Filosofo GZIP Plugin 1.1 | May 3, 2008</h4>
<div class="download-wrap">
<ul>
<li><a href="http://austinmatzko.com/downloads/plugins/filosofo-gzip-compression.zip" class="plugin-download-link">filosofo-gzip-compression.zip</a></li>
<li><a href="http://austinmatzko.com/downloads/plugins/filosofo-gzip-compression.tar.gz" class="plugin-download-link">filosofo-gzip-compression.tar.gz</a></li>
</ul>
</div>
<p>If you have problems, questions, or suggestions, please leave a comment below or open a ticket in my <a href="/forum/">support forum</a>.</p>
<p>
		<div class="plugin-ad"><p>See some of the other  <a 
		href="/blog/wordpress-plugins/">WordPress plugins I&rsquo;ve created</a>.
		<br />
		Like this plugin?  Is it worth a latte?</p><form class="paypal-link" action="https://www.paypal.com/cgi-bin/webscr" method="post">
		<input type="hidden" name="cmd" value="_s-xclick" />
		<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" style="border:0px" name="submit" alt="Make payments with PayPal - it&rsquo;s fast, free and secure!" />
		<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----" />
		</form><a class="amazon-link" href="http://www.amazon.com/gp/registry/wishlist/3UDISU45QDVNG/ref=wl_web"><img src="http://g-ecx.images-amazon.com/images/G/01/gifts/registries/wishlist/v2/web/wl-btn-74-b._V46774601_.gif" width="74" alt="My Amazon.com Wish List" height="42" border="0" /></a><p>This month I have received <strong>$31.50</strong> in donations for the free plugins I offer here, which is about $0.01 per download.</p>
		</div></p>
]]></content:encoded>
			<wfw:commentRss>http://austinmatzko.com/2008/02/22/wordpress-gzip-plugin/feed/</wfw:commentRss>
		<slash:comments>116</slash:comments>
		</item>
		<item>
		<title>New WordPress Plugin: Remember Attachment Link Preferences</title>
		<link>http://austinmatzko.com/2007/10/30/remember-attach-prefs/</link>
		<comments>http://austinmatzko.com/2007/10/30/remember-attach-prefs/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 05:01:32 +0000</pubDate>
		<dc:creator>filosofo</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Attachments]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.ilfilosofo.com/blog/2007/10/30/remember-attach-prefs/</guid>
		<description><![CDATA[I wrote this plugin to deal with a common complaint from my clients: when uploading pictures in WordPress and sending them to the editor, one has to repeatedly re-select how the image should appear. In the case of the screenshot below, I checked &#8220;Show: Full size&#8221; and &#8220;Link to: Page.&#8221; This can get tedious if [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote this plugin to deal with a common complaint from my clients: when uploading pictures in WordPress and sending them to the editor, one has to repeatedly re-select how the image should appear.  In the case of the screenshot below, I checked &#8220;Show: Full size&#8221; and &#8220;Link to: Page.&#8221;  This can get tedious if you have to upload a bunch of images.  This plugin remembers your settings for the next time you upload.</p>

<h3>Screenshot</h3>

<img src='http://www.ilfilosofo.com/wp-content/uploads/upload_prefs.jpg' alt='The upload preferences' />

<h3>Download</h3>
<h4>Remember Attachment Link Preferences 1.0 | October 30, 2007</h4>
<div class="download-wrap"><ul>
				<li><a href="http://austinmatzko.com/downloads/plugins/filosofo-attach-link-prefs.zip" class="plugin-download-link">filosofo-attach-link-prefs.zip</a></li>
				<li><a href="http://austinmatzko.com/downloads/plugins/filosofo-attach-link-prefs.tar.gz" class="plugin-download-link">filosofo-attach-link-prefs.tar.gz</a></li>
			</ul></div>

<h3>Installation</h3>
<ol>
	<li>Download and unzip this plugin.</li>

	<li>Put the 
<div class="filosofo-highlight-light php" style="font-family: monospace;"><br />
filosofo<span style="color: #66cc66;">-</span>attach<span style="color: #66cc66;">-</span>link<span style="color: #66cc66;">-</span>prefs<span style="color: #66cc66;">.</span>php<br />
&nbsp;</div>

 file in your <code>/wp-content/plugins/</code> directory, and activate it.</li>

	<li>That&#8217;s all!</li>

</ol>




<h3>Support</h3>
<p>If you have any complaints, questions, or suggestions concerning this plugin, please leave a comment below, send me an email at <span class="2f91d13"><span class="91abe50">if.website</span> (located at) <span class="8da412a">gmail</span> (dot) <span class="157dad6">com</span></span> or open a ticket in my support <a href="/forum/">forum</a>.</p>


		<div class="plugin-ad"><p>See some of the other  <a 
		href="/blog/wordpress-plugins/">WordPress plugins I&rsquo;ve created</a>.
		<br />
		Like this plugin?  Is it worth a latte?</p><form class="paypal-link" action="https://www.paypal.com/cgi-bin/webscr" method="post">
		<input type="hidden" name="cmd" value="_s-xclick" />
		<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" style="border:0px" name="submit" alt="Make payments with PayPal - it&rsquo;s fast, free and secure!" />
		<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----" />
		</form><a class="amazon-link" href="http://www.amazon.com/gp/registry/wishlist/3UDISU45QDVNG/ref=wl_web"><img src="http://g-ecx.images-amazon.com/images/G/01/gifts/registries/wishlist/v2/web/wl-btn-74-b._V46774601_.gif" width="74" alt="My Amazon.com Wish List" height="42" border="0" /></a><p>This month I have received <strong>$31.50</strong> in donations for the free plugins I offer here, which is about $0.01 per download.</p>
		</div>]]></content:encoded>
			<wfw:commentRss>http://austinmatzko.com/2007/10/30/remember-attach-prefs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
