<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: WordPress Theme Tip: Force an Image Size</title>
	<atom:link href="http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/feed/" rel="self" type="application/rss+xml" />
	<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/</link>
	<description>You have to use an Ottopress to get fresh squeezed Otto.</description>
	<lastBuildDate>Mon, 20 May 2013 01:52:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta3-24284</generator>
	<item>
		<title>By: Kael B</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-3540</link>
		<dc:creator>Kael B</dc:creator>
		<pubDate>Sat, 26 Jun 2010 19:51:57 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-3540</guid>
		<description><![CDATA[Thanks for this, very useful.

Is there any control of the uploaded image like timthumb (zoom and image quality) for example?

I see Matt Brett has tried this: http://mattbrett.com/workshop/2010/wordpress-post-thumbnails-revisited/

Maybe a little more server hungry dynamically resizing but cool all the same. I know the add the wordpress code adds 2 queries per image so probably not much more with timthumb I guess.

Thanks]]></description>
		<content:encoded><![CDATA[<p>Thanks for this, very useful.</p>
<p>Is there any control of the uploaded image like timthumb (zoom and image quality) for example?</p>
<p>I see Matt Brett has tried this: <a href="http://mattbrett.com/workshop/2010/wordpress-post-thumbnails-revisited/" rel="nofollow">http://mattbrett.com/workshop/2010/wordpress-post-thumbnails-revisited/</a></p>
<p>Maybe a little more server hungry dynamically resizing but cool all the same. I know the add the wordpress code adds 2 queries per image so probably not much more with timthumb I guess.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-2830</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Mon, 14 Jun 2010 21:22:51 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-2830</guid>
		<description><![CDATA[This may be a post thumbnail specific issue: http://core.trac.wordpress.org/ticket/13725]]></description>
		<content:encoded><![CDATA[<p>This may be a post thumbnail specific issue: <a href="http://core.trac.wordpress.org/ticket/13725" rel="nofollow">http://core.trac.wordpress.org/ticket/13725</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Starr</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-2829</link>
		<dc:creator>Jeff Starr</dc:creator>
		<pubDate>Mon, 14 Jun 2010 21:21:37 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-2829</guid>
		<description><![CDATA[Yeah, that&#039;s what I thought too.. but it doesn&#039;t seem to be working in 2.9.2. Maybe in version 3.0?]]></description>
		<content:encoded><![CDATA[<p>Yeah, that&#8217;s what I thought too.. but it doesn&#8217;t seem to be working in 2.9.2. Maybe in version 3.0?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-2827</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Mon, 14 Jun 2010 21:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-2827</guid>
		<description><![CDATA[Add the fourth parameter of &quot;true&quot;. That parameter is optional and defaults to false.]]></description>
		<content:encoded><![CDATA[<p>Add the fourth parameter of &#8220;true&#8221;. That parameter is optional and defaults to false.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Starr</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-2826</link>
		<dc:creator>Jeff Starr</dc:creator>
		<pubDate>Mon, 14 Jun 2010 21:17:10 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-2826</guid>
		<description><![CDATA[Thanks this works great (from Mark&#039;s post):

&lt;code&gt;set_post_thumbnail_size( 50, 50, true ); // Normal post thumbnails&lt;/code&gt;
&lt;code&gt;add_image_size( &#039;single-post-thumbnail&#039;, 400, 9999 ); // Permalink thumbnail size&lt;/code&gt;

But it doesn&#039;t look like &lt;code&gt;add_image_size&lt;/code&gt; enables us to set a &quot;hard-crop&quot; for additional sizes..?]]></description>
		<content:encoded><![CDATA[<p>Thanks this works great (from Mark&#8217;s post):</p>
<p><code>set_post_thumbnail_size( 50, 50, true ); // Normal post thumbnails</code><br />
<code>add_image_size( 'single-post-thumbnail', 400, 9999 ); // Permalink thumbnail size</code></p>
<p>But it doesn&#8217;t look like <code>add_image_size</code> enables us to set a &#8220;hard-crop&#8221; for additional sizes..?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nwalsh</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-2824</link>
		<dc:creator>nwalsh</dc:creator>
		<pubDate>Mon, 14 Jun 2010 21:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-2824</guid>
		<description><![CDATA[Yeah, Mark goes into post thumbnails a bit more &lt;a href=&quot;http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Yeah, Mark goes into post thumbnails a bit more <a href="http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/" rel="nofollow">here</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-2823</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Mon, 14 Jun 2010 21:07:11 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-2823</guid>
		<description><![CDATA[Not really following you there. Post thumbnails have their own size already, Defining additional sizes doesn&#039;t make a whole lot of sense.

Edit: Oh, yes, I see it now. Mark&#039;s post covers that use of it nicely.]]></description>
		<content:encoded><![CDATA[<p>Not really following you there. Post thumbnails have their own size already, Defining additional sizes doesn&#8217;t make a whole lot of sense.</p>
<p>Edit: Oh, yes, I see it now. Mark&#8217;s post covers that use of it nicely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Starr</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-2822</link>
		<dc:creator>Jeff Starr</dc:creator>
		<pubDate>Mon, 14 Jun 2010 21:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-2822</guid>
		<description><![CDATA[Sweet tip - thanks for sharing!

Question: Does this work for post-thumbnails?

I know we can set their default size, but is it also possible to specify alternate/additional sizes?]]></description>
		<content:encoded><![CDATA[<p>Sweet tip &#8211; thanks for sharing!</p>
<p>Question: Does this work for post-thumbnails?</p>
<p>I know we can set their default size, but is it also possible to specify alternate/additional sizes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-2796</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Mon, 14 Jun 2010 18:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-2796</guid>
		<description><![CDATA[The URL field to their twitter profile is intentional. I used to use their URL field. People complained. 

The fake email is unavoidable. Twitter has no way to get a real email. I&#039;ve thought about figuring out a way to prevent subscriptions on that, but haven&#039;t gotten around to it yet.]]></description>
		<content:encoded><![CDATA[<p>The URL field to their twitter profile is intentional. I used to use their URL field. People complained. </p>
<p>The fake email is unavoidable. Twitter has no way to get a real email. I&#8217;ve thought about figuring out a way to prevent subscriptions on that, but haven&#8217;t gotten around to it yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: scribu</title>
		<link>http://ottopress.com/2010/wordpress-theme-tip-force-an-image-size/comment-page-1/#comment-2795</link>
		<dc:creator>scribu</dc:creator>
		<pubDate>Mon, 14 Jun 2010 18:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=189#comment-2795</guid>
		<description><![CDATA[PS: Relating to the simple twitter connect:

1. It would be nice if the URL field would be populated with the URL on my twitter profile (as opposed to my twitter profile URL)

2. The Notify me of followup comments is useless, since the email field is populated with a fake address.]]></description>
		<content:encoded><![CDATA[<p>PS: Relating to the simple twitter connect:</p>
<p>1. It would be nice if the URL field would be populated with the URL on my twitter profile (as opposed to my twitter profile URL)</p>
<p>2. The Notify me of followup comments is useless, since the email field is populated with a fake address.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Object Caching 433/451 objects using xcache

 Served from: ottodestruct.com @ 2013-05-20 22:19:57 by W3 Total Cache -->