<?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>IM.ASHI &#187; 缩略图</title>
	<atom:link href="http://ashi.im/article/tag/%e7%bc%a9%e7%95%a5%e5%9b%be/feed" rel="self" type="application/rss+xml" />
	<link>http://ashi.im</link>
	<description>有的时候做自己,有的时候却不得不放弃自己。</description>
	<lastBuildDate>Mon, 24 May 2010 00:55:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>给你的wordpress文章添加缩略图</title>
		<link>http://ashi.im/article/wordpress-thumb.html</link>
		<comments>http://ashi.im/article/wordpress-thumb.html#comments</comments>
		<pubDate>Wed, 27 Jan 2010 03:51:57 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[代码如诗]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[缩略图]]></category>

		<guid isPermaLink="false">http://ashi.im/article/wordpress-thumb.html</guid>
		<description><![CDATA[&#160;
&#160;
创建日志缩略图我想很多wper都有用过这个方法，很多主题都自带这个功能，由于我的主题没有自带，但是我又想用这个功能那么该怎么办呢？用插件？这个倒是可以实现，网络上有很多插件可以实现这个功能大家搜索一下就可以了。如果想用代码实现这个功能的继续往下看吧。
<strong>一、准备工作
	</strong>
1.在你的主题目录下建立一个文件夹scripts，在该目录下建立一个子目录cache用于缩略图缓存，把......<p class='alignright'><a href='http://ashi.im/article/wordpress-thumb.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<div id="yass_top_edge_dummy" style="width: 1px; height: 1px; padding: 0px; margin: -9px 0px 0px; border-width: 0px; display: block;">&nbsp;</div>
<div id="yass_top_edge" style="background-image: url(&quot;chrome://yass/content/edgebgtop.png&quot;); background-attachment: scroll; background-position: center bottom; padding: 0px; margin: 0px 0px 0px -8px; border-width: 0px; height: 0px; display: block; width: 1px;">&nbsp;</div>
<p style="margin-top: 20px;">创建日志缩略图我想很多wper都有用过这个方法，很多主题都自带这个功能，由于我的主题没有自带，但是我又想用这个功能那么该怎么办呢？用插件？这个倒是可以实现，网络上有很多插件可以实现这个功能大家搜索一下就可以了。如果想用代码实现这个功能的继续往下看吧。</p>
<p><span style="font-size: 18px;"><strong>一、准备工作<br />
	</strong></span></p>
<p><span style="color: rgb(0, 128, 0);">1.在你的主题目录下建立一个文件夹scripts，在该目录下建立一个子目录cache用于缩略图缓存，把这两个目录设为777。<br />
	</span></p>
<blockquote>
<p>如：<code>yourdomain.com/wp-content/themes/your-theme/scripts/</code></p>
<p><code>yourdomain.com/wp-content/themes/your-theme/scripts/cache/</code></p>
</blockquote>
<p><span style="color: rgb(0, 128, 0);">2.下载</span><a href="http://ashiim.googlecode.com/files/timthumb.php" target="_blank">TimThumb.php</a><span style="color: rgb(0, 128, 0);">并放入scripts文件夹</span>。</p>
<blockquote>
<p><code>yourdomain.com/wp-content/themes/your-theme/scripts/timthumb.php</code></p>
</blockquote>
<p>记得要设文件夹的属性为777。</p>
<p><span style="font-size: 18px;"><strong>二、插入调用代码<br />
	</strong></span></p>
<p>在你的主题目录下找到index.php或者home.php进行编辑，找到定义标题附近的地方插件代码。</p>
<p>这里提供3中不同的代码调用</p>
<p><span style="background-color: rgb(0, 128, 0);">1.只显示图片</span></p>
<blockquote><pre class="php" style="font-family: monospace;"><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="font-style: italic; color: rgb(102, 102, 102);">// This will show only the image. Alter the width and height (in both places) to your needs. ?&gt;</span>
&nbsp;
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(177, 177, 0);">if</span> <span style="color: rgb(0, 153, 0);">(</span> get_post_meta<span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$post</span><span style="color: rgb(51, 153, 51);">-&gt;</span><span style="color: rgb(0, 64, 0);">ID</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 0, 255);">&#39;thumb&#39;</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 153, 0); font-weight: bold;">true</span><span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">{</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;</span>div <span style="color: rgb(0, 0, 0); font-weight: bold;">class</span><span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;postthumb&quot;</span><span style="color: rgb(51, 153, 51);">&gt;</span>
		<span style="color: rgb(51, 153, 51);">&lt;</span>img src<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php bloginfo(&#39;template_directory&#39;); ?&gt;/scripts/timthumb.php?src=&lt;?php echo get_post_meta(<span style="color: rgb(0, 102, 153); font-weight: bold;">$post-&gt;ID</span>, &quot;</span>thumb<span style="color: rgb(0, 0, 255);">&quot;, <span style="color: rgb(0, 102, 153); font-weight: bold;">$single</span> = true); ?&gt;&amp;h=150&amp;w=150&amp;zc=1&quot;</span> alt<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php the_title(); ?&gt;&quot;</span> width<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;100&quot;</span> height<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;57&quot;</span> <span style="color: rgb(51, 153, 51);">/&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;/</span>div<span style="color: rgb(51, 153, 51);">&gt;</span>
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span></pre>
</blockquote>
<p><span style="background-color: rgb(0, 128, 0);">2.显示图片，图片链接到文章。<br />
	</span></p>
<blockquote><pre class="php" style="font-family: monospace;">        <span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="font-style: italic; color: rgb(102, 102, 102);">// This will show the image and link the image to the post. Alter the width and height (in both places) to your needs. ?&gt;</span>
&nbsp;
        <span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(177, 177, 0);">if</span> <span style="color: rgb(0, 153, 0);">(</span> get_post_meta<span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$post</span><span style="color: rgb(51, 153, 51);">-&gt;</span><span style="color: rgb(0, 64, 0);">ID</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 0, 255);">&#39;thumb&#39;</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 153, 0); font-weight: bold;">true</span><span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">{</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;</span>div <span style="color: rgb(0, 0, 0); font-weight: bold;">class</span><span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;postthumb&quot;</span><span style="color: rgb(51, 153, 51);">&gt;</span>
		<span style="color: rgb(51, 153, 51);">&lt;</span>a href<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php the_permalink(); ?&gt;&quot;</span> rel<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;bookmark&quot;</span> title<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot;</span><span style="color: rgb(51, 153, 51);">&gt;&lt;</span>img src<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php bloginfo(&#39;template_directory&#39;); ?&gt;/scripts/timthumb.php?src=&lt;?php echo get_post_meta(<span style="color: rgb(0, 102, 153); font-weight: bold;">$post-&gt;ID</span>, &quot;</span>thumb<span style="color: rgb(0, 0, 255);">&quot;, <span style="color: rgb(0, 102, 153); font-weight: bold;">$single</span> = true); ?&gt;&amp;h=150&amp;w=150&amp;zc=1&quot;</span> alt<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php the_title(); ?&gt;&quot;</span> width<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;150&quot;</span> height<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;150&quot;</span> <span style="color: rgb(51, 153, 51);">/&gt;&lt;/</span>a<span style="color: rgb(51, 153, 51);">&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;/</span>div<span style="color: rgb(51, 153, 51);">&gt;</span>
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span></pre>
</blockquote>
<p><span style="background-color: rgb(0, 128, 0);">3.显示图片，图片链接地址自定<br />
	</span></p>
<p>&nbsp;</p>
<blockquote><pre class="php" style="font-family: monospace;"><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> 	<span style="font-style: italic; color: rgb(102, 102, 102);">// This will show the image and link it to anything you place into another custom field of &quot;imglink&quot;. </span>
		<span style="font-style: italic; color: rgb(102, 102, 102);">// Alter the width and height (in both places) to your needs.  </span>
  <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(177, 177, 0);">if</span> <span style="color: rgb(0, 153, 0);">(</span> get_post_meta<span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$post</span><span style="color: rgb(51, 153, 51);">-&gt;</span><span style="color: rgb(0, 64, 0);">ID</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 0, 255);">&#39;imglink&#39;</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 153, 0); font-weight: bold;">true</span><span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">{</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;</span>div <span style="color: rgb(0, 0, 0); font-weight: bold;">class</span><span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;postthumb&quot;</span><span style="color: rgb(51, 153, 51);">&gt;</span>
		<span style="color: rgb(51, 153, 51);">&lt;</span>a href<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php echo get_post_meta(<span style="color: rgb(0, 102, 153); font-weight: bold;">$post-&gt;ID</span>, &quot;</span>imglink<span style="color: rgb(0, 0, 255);">&quot;, <span style="color: rgb(0, 102, 153); font-weight: bold;">$single</span> = true); ?&gt;&quot;</span> rel<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;bookmark&quot;</span> title<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot;</span><span style="color: rgb(51, 153, 51);">&gt;</span><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?</span>php <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span><span style="color: rgb(51, 153, 51);">&lt;</span>img src<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php bloginfo(&#39;template_directory&#39;); ?&gt;/scripts/timthumb.php?src=&lt;?php echo get_post_meta(<span style="color: rgb(0, 102, 153); font-weight: bold;">$post-&gt;ID</span>, &quot;</span>thumb<span style="color: rgb(0, 0, 255);">&quot;, <span style="color: rgb(0, 102, 153); font-weight: bold;">$single</span> = true); ?&gt;&amp;h=150&amp;w=150&amp;zc=1&quot;</span> alt<span style="color: rgb(51, 153, 51);">=</span><span style="color: rgb(0, 0, 255);">&quot;&lt;?php the_title(); ?&gt;&quot;</span>  <span style="color: rgb(51, 153, 51);">/&gt;</span><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?</span>php <span style="color: rgb(177, 177, 0);">if</span> <span style="color: rgb(0, 153, 0);">(</span> get_post_meta<span style="color: rgb(0, 153, 0);">(</span><span style="color: rgb(0, 0, 136);">$post</span><span style="color: rgb(51, 153, 51);">-&gt;</span><span style="color: rgb(0, 64, 0);">ID</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 0, 255);">&#39;imglink&#39;</span><span style="color: rgb(51, 153, 51);">,</span> <span style="color: rgb(0, 153, 0); font-weight: bold;">true</span><span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">)</span> <span style="color: rgb(0, 153, 0);">{</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span><span style="color: rgb(51, 153, 51);">&lt;/</span>a<span style="color: rgb(51, 153, 51);">&gt;</span><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?</span>php <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span>
	<span style="color: rgb(51, 153, 51);">&lt;/</span>div<span style="color: rgb(51, 153, 51);">&gt;</span>
<span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span> <span style="color: rgb(0, 153, 0);">}</span> <span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span></pre>
</blockquote>
<p><span style="font-size: 18px;"><strong>三、使用方法<br />
	</strong></span></p>
<p>1.在自定义字段值处填入你上传图片的地址</p>
<p>2.使用字段名称 <strong>thumb</strong></p>
<p>3.使用第三种代码的朋友出了需要填<strong> thumb</strong> 外还要填写一个 <strong>imglink</strong> 值。如图所示：</p>
<p><a class="thickbox" href="http://ashi.im/wp-content/uploads/2010/01/thumb.jpg" target="_blank"><img align="middle" alt="" border="0" class="aligncenter size-medium wp-image-1211" height="71" src="http://ashi.im/wp-content/uploads/2010/01/thumb-300x71.jpg" title="给你的wordpress文章添加缩略图" width="300" /></a></p>
<p><span style="font-size: 16px;"><span style="background-color: rgb(165, 42, 42);">PS,不知道怎么回事我在本地测试用第二种方法可以实现的，在服务器上偏偏不行，图片显示不了&#8230;囧，难道服务器问题？现在只能不用TimThumb.php了，把它删除掉，也不用在主题目录里建文件夹了。这样唯一不好的就是不能自己截取缩略图，不过貌似wordpress自带有150*150的缩略图。囧~</span></span></p>
<p>QQREADERA743E3A4568AE6F2</p>
<p>QQREADER63B8199F35B961F3</p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/original_size_image-js.html" title="浏览器可显示原图片的JS">浏览器可显示原图片的JS</a> (36)<br /><small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在逛Opera...</small></li><li><a href="http://ashi.im/article/touxiang-pinglun.html" title="折腾一下-带头像显示的最新评论代码">折腾一下-带头像显示的最新评论代码</a> (35)<br /><small>&nbsp;
&nbsp;
博客不折腾不行啊，用现在这个主题的时候本来想弄个头像缓存来着，不过在...</small></li><li><a href="http://ashi.im/article/wp-themes-trytogo.html" title="启动新主题TryToGo">启动新主题TryToGo</a> (33)<br /><small>启用新的主题了，自己改了好几天，不过貌似还有BUG，IE下(我的是IE8)侧边栏有问题,IE6和IE...</small></li><li><a href="http://ashi.im/article/wordpress-301.html" title="wordpress 301重定向问题">wordpress 301重定向问题</a> (23)<br /><small>要实现的是从原来的域名ssslove.com/***.html访问的时候，通过301跳转到ashi....</small></li><li><a href="http://ashi.im/article/upgrade-wordpress.html" title="升级wordpress 2.9了">升级wordpress 2.9了</a> (51)<br /><small>今天回来了，顺便升级了一下wordpress，现在2.9了。由于我的wordpress下载、升级插件...</small></li><li><a href="http://ashi.im/article/it-is-wrong.html" title="好像出错了">好像出错了</a> (22)<br /><small>这两天有点事情没的更新，今天想趁有点时间弄下博客，可是...

安装“小墙”好像不能用的，自己发...</small></li><li><a href="http://ashi.im/article/win7-psd-patch.html" title="WIN7下的PSD缩略图补丁">WIN7下的PSD缩略图补丁</a> (52)<br /><small>哇哈哈，渐渐发现WIN7有很多不兼容的地方，也发现有很多地方微软做的确实不细心。上次阿士推介给大家G...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/wordpress-thumb.html/feed</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>WIN7下的PSD缩略图补丁</title>
		<link>http://ashi.im/article/win7-psd-patch.html</link>
		<comments>http://ashi.im/article/win7-psd-patch.html#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:56:20 +0000</pubDate>
		<dc:creator>阿士</dc:creator>
				<category><![CDATA[精品小软]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[PSD补丁]]></category>
		<category><![CDATA[WIN7]]></category>
		<category><![CDATA[缩略图]]></category>

		<guid isPermaLink="false">http://ashi.im/article/win7%e4%b8%8b%e7%9a%84psd%e7%bc%a9%e7%95%a5%e5%9b%be%e8%a1%a5%e4%b8%81.html</guid>
		<description><![CDATA[哇哈哈，渐渐发现WIN7有很多不兼容的地方，也发现有很多地方微软做的确实不细心。上次阿士推介给大家GIF查看器{<a href="http://ashi.im/article/image-viewer-for-win7.html" target="_blank">WIN7下的GIF图片动态查看工具</a>}，今天路过<strong>远景论坛</strong>确是又发现了这个PSD补丁。
弄网站或博客什么的朋友总会用到Photoshop，之前我还没有发现PSD在WIN7下居然没缩略图，今天摆弄现在用的这个<strong>WordPress主题</strong>终于发现了，幸运的是今天晚上就发现了这个补丁，哈哈，RP爆发了。......<p class='alignright'><a href='http://ashi.im/article/win7-psd-patch.html'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>哇哈哈，渐渐发现WIN7有很多不兼容的地方，也发现有很多地方微软做的确实不细心。上次阿士推介给大家GIF查看器{<a href="http://ashi.im/article/image-viewer-for-win7.html" target="_blank">WIN7下的GIF图片动态查看工具</a>}，今天路过<strong>远景论坛</strong>确是又发现了这个PSD补丁。</p>
<p>弄网站或博客什么的朋友总会用到Photoshop，之前我还没有发现PSD在WIN7下居然没缩略图，今天摆弄现在用的这个<strong>WordPress主题</strong>终于发现了，幸运的是今天晚上就发现了这个补丁，哈哈，RP爆发了。</p>
<p>以下引用下原帖内容：</p>
<blockquote><p>经过长时间和各种版本的测试，是完全可以用的，唯独64位没测试过，安装简单，一步就行，本人亲测，附有安装说明，希望对广大PSD软件用户带来方便。有些朋友还不知道此补丁有什么作用，在此补充说明之前PSD软件从CS版本开始，安装完后电脑里原本是PSD格式的文件不能显示缩略图，想看到原图必须打开软件才能知道图片的内容，安装此补丁之后不用打开软件，在文件夹里就可以看到PSD格式图片的内容，挺方便的。<br />
另外注明一下：要将&#8221;psicon.dll&#8221;文件拷备到系统system32目录下，不然的话重启之后又看不到缩略图了。</p>
<p>步骤一：解压到任何文件夹；</p>
<p>步骤二：将psicon.dll拷备到系统system32目录下；</p>
<p>步骤三：右键inf文件安装</p></blockquote>
<p style="TEXT-ALIGN: center"><a rel="lightbox[]" href="http://ashi.im/wp-content/uploads/2009/12/PSD补丁.jpg" target="_blank"><img class="aligncenter size-medium wp-image-1165" style="border: 0px;" title="PSD补丁" src="http://ashi.im/wp-content/uploads/2009/12/PSD补丁-300x217.jpg" alt="PSD补丁" width="300" height="217" /></a></p>
<p style="TEXT-ALIGN: center"><a href="http://down.qiannao.com/space/file/flisyvip/-4e0a-4f20-5206-4eab/-7cbe-54c1-5c0f-8f6f/psd_-8865-4e01.rar/.page" target="_blank">PSD补丁—点我下载吧</a></p>
<h2  class="related_post_title">你可以看看相关的东东:</h2><ul class="related_post"><li><a href="http://ashi.im/article/wordpress-thumb.html" title="给你的wordpress文章添加缩略图">给你的wordpress文章添加缩略图</a> (31)<br /><small>&nbsp;
&nbsp;
创建日志缩略图我想很多wper都有用过这个方法，很多主题都自带这个功...</small></li><li><a href="http://ashi.im/article/media-wrong-version.html" title="WIN7下Media Player版本不对问题">WIN7下Media Player版本不对问题</a> (21)<br /><small>上次阿士在WPG论坛分享过系统图标来着，这套图标确实很漂亮不过我只有32位版本的，64位的就没有了。...</small></li><li><a href="http://ashi.im/article/speed-up-win7.html" title="加速WIN7,缩短响应时间">加速WIN7,缩短响应时间</a> (54)<br /><small>阿士用WIN7的时候经常遇到"程序未响应"这种情况，然后就要等它自动响应起来，特别是最近packer...</small></li><li><a href="http://ashi.im/article/xp-to-win7.html" title="XP变WIN7，界面仿真">XP变WIN7，界面仿真</a> (36)<br /><small>话说这两天阿士都在鼓捣着Firefox呢，之前的版本太低了，没更新，所以删除了。重新下载后发现好多插...</small></li><li><a href="http://ashi.im/article/image-viewer-for-win7.html" title="WIN7下的GIF图片动态查看工具">WIN7下的GIF图片动态查看工具</a> (69)<br /><small>大家是否发现在WIN7下查看GIF文件都是用IE浏览器打开的？是不是觉得很不过瘾？想想在XP下的Wi...</small></li><li><a href="http://ashi.im/article/glassnotes.html" title="WIN7可用透明记事本Glassnotes">WIN7可用透明记事本Glassnotes</a> (64)<br /><small>这款漂亮而且实用的记事本确实很养眼啊，在WIN7和Vista下的透明效果让人爱不释手。
**仅支持...</small></li><li><a href="http://ashi.im/article/watch-tv-with-media.html" title="windows media可用600+的电视台">windows media可用600+的电视台</a> (20)<br /><small>个人觉得WIN7下的media player加上WIN7codes解码包不差于任何的播放器，我觉得微...</small></li></ul>]]></content:encoded>
			<wfw:commentRss>http://ashi.im/article/win7-psd-patch.html/feed</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
	</channel>
</rss>
