<?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>似水年华 &#187; wordpress-theme</title>
	<atom:link href="http://www.waterylife.com/articles/tag/wordpress-theme/feed" rel="self" type="application/rss+xml" />
	<link>http://www.waterylife.com</link>
	<description>记录平淡生活，探索网络技术</description>
	<lastBuildDate>Tue, 13 Jul 2010 14:52:27 +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://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html</link>
		<comments>http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html#comments</comments>
		<pubDate>Sat, 10 Jul 2010 18:07:59 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-theme]]></category>
		<category><![CDATA[wordpress模板]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/?p=807</guid>
		<description><![CDATA[1. 去掉目录链接中的title：view all posts filed under 鼠标停留在目录链接上时，会显示“view all posts filed under 目录名”。因为函数 &#60;?php wp_list_categories(&#8221;); ?&#62;中有一个参数use_desc_for_title，这... ]]></description>
			<content:encoded><![CDATA[<p><strong>1. 去掉目录链接中的title：view all posts filed under</strong></p>
<p>鼠标停留在目录链接上时，会显示“view all posts filed under 目录名”。因为函数<br />
&lt;?php wp_list_categories(&#8221;); ?&gt;中有一个参数use_desc_for_title，这个参数默认值为1，即title显示目录的描述description（添加目录时选填的），当use_desc_for_title=0时，则title=“view all posts filed under 目录名”。好像WordPress设定只有这两个选项。如果要去掉view all posts filed under，可以修改WordPress的源代码，但以后升级还会有这个问题。Google了一下，发现使用下面的函数，可以去除view all posts filed under。参考<a href="http://www.bssn.org/remove-view-all-posts-filed-under.html" target="_blank">这篇文章</a>。</p>
<p>&lt;?php echo str_replace(&#8220;View all posts filed under &#8220;,&#8221;",wp_list_categories(&#8216;echo=0&#8242;)); ?&gt;</p>
<p>&lt;?php wp_list_categories(&#8221;); ?&gt;中其它参数就不再介绍。</p>
<p><strong>2. 灵活调用WordPress自定义域</strong></p>
<p>以前一直觉得WordPress的自定义域比较神秘，从未用过。这两天在测试时发现很简单。只需添加一个域，然后赋值，再模板中使用如下代码调用即可。</p>
<p>&lt;?php echo get_post_meta($post-&gt;ID, &#8216;域&#8217;, true); ?&gt;</p>
<p>其中域就是在添加的自定义域的名称，函数返回的是给域的赋值。</p>
<p>比如要用自定义域实现缩略图：可以添加一个域，如preimg，填上图片地址，然后在模板中用 &lt;img src=&#8221;&lt;?php echo get_post_meta($post-&gt;ID, &#8216;域&#8217;, true); ?&gt;&#8221; /&gt;来显示图片。</p>
<p><strong>3. WordPress调用最新评论的代码</strong></p>
<p>之前我一直使用WordPress中文工具箱，用这个插件来调用最新文章和最新评论。当升级到WordPress3.0后，发现最新评论调用失败了。参考了帕兰的<a href="http://paranimage.com/mastering-wordpress-themes-5/" target="_blank">这篇文章</a>后，修改了WordPress中文工具箱插件的代码，现在可以输出最新评论了。（见侧边栏）</p>
<p><strong>4. 解决WordPress文章ID不连续</strong></p>
<p>当WordPress的永久链接地址设置中有%post_id%时，发现文章的id不连续，因为WordPress有自动保存功能。要解决文章ID不连续问题，可以参考月光博客的<a href="http://www.williamlong.info/archives/1491.html" target="_blank">这篇文章</a>。据说还可用插件来解决这个问题，如有朋友知道插件名称，请留言告知。</p>
<p><strong>5. WordPress标签的调用，让字体大小一致</strong></p>
<p>这个问题比较简单。WordPress调用标签云的函数是：&lt;?php wp_tag_cloud( ); ?&gt;。默认情况下，调出来的tag根据使用次数的多少有不同的字体大小。要使每个tag的字体大小一样，只需将最大字体和最小字体设置成相同大小。如：</p>
<p>&lt;?php wp_tag_cloud(&#8216;smallest=12&amp;largest=12&amp;unit=px&#8217;); ?&gt;</p>
<p>PS: 很久没更新了。今天趁着等世界杯的时间，发篇文章 <img src='http://www.waterylife.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" title="付费WordPress Theme：Elegant Themes">付费WordPress Theme：Elegant Themes</a></li><li><a href="http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html" title="升级到WordPress2.7，更换模板">升级到WordPress2.7，更换模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-coogee.html" title="推荐WordPress Theme: Coogee">推荐WordPress Theme: Coogee</a></li><li><a href="http://www.waterylife.com/articles/magazine-style-wordpress-theme.html" title="7款免费杂志型WordPress Theme">7款免费杂志型WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html" title="ThemeHybrid的一些免费WordPress Theme">ThemeHybrid的一些免费WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html" title="免费下载Revolution WordPress Themes">免费下载Revolution WordPress Themes</a></li><li><a href="http://www.waterylife.com/articles/waterylife-has-a-new-look.html" title="似水年华更改模板">似水年华更改模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html" title="Lunarpages举办WordPress模板大赛，奖品金额上万元">Lunarpages举办WordPress模板大赛，奖品金额上万元</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-105.html" title="WordPress Theme -10/5">WordPress Theme -10/5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ThemeHybrid的一些免费WordPress Theme</title>
		<link>http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html</link>
		<comments>http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html#comments</comments>
		<pubDate>Mon, 04 Jan 2010 15:07:37 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Elegantthemes]]></category>
		<category><![CDATA[ThemeHybrid]]></category>
		<category><![CDATA[wordpress-theme]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/?p=777</guid>
		<description><![CDATA[这两天在找一些免费的WordPress Theme，但找遍了国内很多Theme网站，如wopus等，仍没有找到合适的。真感觉是自己的眼光问题。最后在ThemeHybrid.com上找到了一些合适的，上面有很多简约、大方的Word... ]]></description>
			<content:encoded><![CDATA[<p>这两天在找一些免费的WordPress Theme，但找遍了国内很多Theme网站，如wopus等，仍没有找到合适的。真感觉是自己的眼光问题。最后在ThemeHybrid.com上找到了一些合适的，上面有很多简约、大方的WordPress Theme。</p>
<p>说到WordPress Theme，就要说说我付费购买了的<a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" target="_blank">elegantthemes</a>。一年前，看他们的主题，觉得很漂亮，于是购买了，但没打算续费。前段时间，paypal居然扣掉了$19.95，因为是自动续费，赶紧unsubscribe了自动续费。一直以为只有信用卡能自动续费，原来paypal也可以。喜欢elegantthemes的朋友，可以向我索取相关主题，毕竟我自己不打算用elegantthemes了。</p>
<p>我也很想自己写个主题，但总感觉技术水平有限，没多少时间。与其花费时间在theme上，不如花在内容上。theme是个无底洞，没有最完美的时候。</p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html" title="WordPress的几个细节更改">WordPress的几个细节更改</a></li><li><a href="http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html" title="免费下载Revolution WordPress Themes">免费下载Revolution WordPress Themes</a></li><li><a href="http://www.waterylife.com/articles/colorful-wordpress-themes-for-waterylife.html" title="我的主题很色">我的主题很色</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" title="付费WordPress Theme：Elegant Themes">付费WordPress Theme：Elegant Themes</a></li><li><a href="http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html" title="升级到WordPress2.7，更换模板">升级到WordPress2.7，更换模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-coogee.html" title="推荐WordPress Theme: Coogee">推荐WordPress Theme: Coogee</a></li><li><a href="http://www.waterylife.com/articles/magazine-style-wordpress-theme.html" title="7款免费杂志型WordPress Theme">7款免费杂志型WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/waterylife-has-a-new-look.html" title="似水年华更改模板">似水年华更改模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html" title="Lunarpages举办WordPress模板大赛，奖品金额上万元">Lunarpages举办WordPress模板大赛，奖品金额上万元</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-105.html" title="WordPress Theme -10/5">WordPress Theme -10/5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>免费下载Revolution WordPress Themes</title>
		<link>http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html</link>
		<comments>http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html#comments</comments>
		<pubDate>Wed, 24 Dec 2008 12:17:43 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-theme]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/?p=645</guid>
		<description><![CDATA[Revolution WordPress Themes是revolutiontheme很早就出现的一系列收费的杂志型WordPress主题，早期刚推出时吸引了很多WordPress用户的眼球，售价上百美元。但是不久网上出现了很多免费下载的版本，国内... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.revolutiontwo.com/" target="_blank">Revolution WordPress Themes</a>是revolutiontheme很早就出现的一系列收费的杂志型WordPress主题，早期刚<a href="http://www.waterylife.com/articles/two-revolutional-wordpress-themes.html" target="_blank">推出</a>时吸引了很多WordPress用户的眼球，售价上百美元。但是不久网上出现了很多免费下载的版本，国内有很多blogger使用。</p>
<p>现在revolutiontheme变成revolutiontwo了，主题设计没什么改进，值得一看的仍是两个杂志型主题：Church和lifestyle，价格是59.95美元，但是也提供了免费下载（<span style="text-decoration: underline;">在每个theme介绍页面的最下方</span>）。</p>
<div id="attachment_646" class="wp-caption aligncenter" style="width: 410px"><img class="size-full wp-image-646" title="church" src="http://www.waterylife.com/wp-content/uploads/2008/12/church.gif" alt="revolution wordpress theme-church" width="400" height="220" /><p class="wp-caption-text">revolution wordpress theme-church</p></div>
<div id="attachment_647" class="wp-caption aligncenter" style="width: 410px"><img class="size-full wp-image-647" title="lifestyle" src="http://www.waterylife.com/wp-content/uploads/2008/12/lifestyle.gif" alt="revolution wordpress theme-lifestyle" width="400" height="220" /><p class="wp-caption-text">revolution wordpress theme-lifestyle</p></div>
<p>我下载了lifestyle，在本地测试，发现代码不够严谨，有很多无用代码。其实我一直不太敢用这些功能丰富的主题，因为功能丰富，所以代码、JS调用等就多，显得臃肿，如果制作者只为实现功能，不追求代码的简洁，那受害的就是我们这些使用者了。</p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html" title="WordPress的几个细节更改">WordPress的几个细节更改</a></li><li><a href="http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html" title="ThemeHybrid的一些免费WordPress Theme">ThemeHybrid的一些免费WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" title="付费WordPress Theme：Elegant Themes">付费WordPress Theme：Elegant Themes</a></li><li><a href="http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html" title="升级到WordPress2.7，更换模板">升级到WordPress2.7，更换模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-coogee.html" title="推荐WordPress Theme: Coogee">推荐WordPress Theme: Coogee</a></li><li><a href="http://www.waterylife.com/articles/magazine-style-wordpress-theme.html" title="7款免费杂志型WordPress Theme">7款免费杂志型WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/waterylife-has-a-new-look.html" title="似水年华更改模板">似水年华更改模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html" title="Lunarpages举办WordPress模板大赛，奖品金额上万元">Lunarpages举办WordPress模板大赛，奖品金额上万元</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-105.html" title="WordPress Theme -10/5">WordPress Theme -10/5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>付费WordPress Theme：Elegant Themes</title>
		<link>http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html</link>
		<comments>http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html#comments</comments>
		<pubDate>Wed, 17 Dec 2008 13:17:07 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-theme]]></category>
		<category><![CDATA[wordpress模板]]></category>
		<category><![CDATA[付费模板]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/?p=586</guid>
		<description><![CDATA[Elegantthemes.com提供了一系列的WordPress Themes，界面漂亮，功能丰富。这些Themes不是免费的，用户需要缴纳一定的年费（目前是19.95美元/年），就可以在自己的任何一个博客上使用Elegantthemes.com上所... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=627_0_1_10" target="_blank"><img src="http://www.elegantthemes.com/affiliates/banners/300x250.gif" border="0" alt="" width="300" height="250" align="right" /></a><a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=627" target="_blank">Elegantthemes.com</a>提供了一系列的WordPress Themes，界面漂亮，功能丰富。这些Themes不是免费的，用户需要缴纳一定的年费（目前是19.95美元/年），就可以在自己的任何一个博客上使用Elegantthemes.com上所有的模板，没有使用限制。一年之后，用户可选择是否续费，如果续费则继续享用Elegantthemes.com的服务，如果不再续费，用户可继续使用已经下载的模板，只是不能使用Elegantthemes.com以后推出的模板了。所以，19.95美元的年费还是物有所值的。</p>
<p><a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=627" target="_blank">Elegantthemes</a>还推出Affiliate Program。用户无须购买themes，也能注册affiliate members，享受50%的提成，即每推荐一个买家可获得近10美元的推介费用。当帐户收入达到49美元时，可以申请支付，主要支付方式为paypal。</p>
<p>前几天，<a href="http://www.waterylife.com" target="_self">似水年华</a>下载了盗版的Elegantthemes的Studio Blue，很好看。但毕竟是盗版，有些细节在不同浏览器下显示的不好，而且功能不够完善。于是今天缴纳了年费，使用上了正版。正版在firefox、IE7下显示还可以，但在IE6下侧边栏在content下面了。这些问题留待以后解决吧。</p>
<p>今天还启用了Google Gears，打开博客的速度加快很多。怎么启动？Dashboard》Tools，具体见下面的视频。<br />
<object width="568" height="428" data="http://vimeo.com/moogaloop.swf?clip_id=2491633&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=2491633&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" /><param name="allowfullscreen" value="true" /></object></p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html" title="WordPress的几个细节更改">WordPress的几个细节更改</a></li><li><a href="http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html" title="升级到WordPress2.7，更换模板">升级到WordPress2.7，更换模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-coogee.html" title="推荐WordPress Theme: Coogee">推荐WordPress Theme: Coogee</a></li><li><a href="http://www.waterylife.com/articles/magazine-style-wordpress-theme.html" title="7款免费杂志型WordPress Theme">7款免费杂志型WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html" title="ThemeHybrid的一些免费WordPress Theme">ThemeHybrid的一些免费WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html" title="免费下载Revolution WordPress Themes">免费下载Revolution WordPress Themes</a></li><li><a href="http://www.waterylife.com/articles/waterylife-has-a-new-look.html" title="似水年华更改模板">似水年华更改模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html" title="Lunarpages举办WordPress模板大赛，奖品金额上万元">Lunarpages举办WordPress模板大赛，奖品金额上万元</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-105.html" title="WordPress Theme -10/5">WordPress Theme -10/5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>升级到WordPress2.7，更换模板</title>
		<link>http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html</link>
		<comments>http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html#comments</comments>
		<pubDate>Sun, 14 Dec 2008 07:31:52 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-theme]]></category>
		<category><![CDATA[wordpress2.7]]></category>
		<category><![CDATA[wordpress模板]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/?p=579</guid>
		<description><![CDATA[前几天WordPress2.7就已经放出来了，我第一时间通过“一键升级”插件对博客做了升级，很顺利，然后就考虑换模板了。 也许太久没接触CSS了，在改善模板的一些细节方面时，花费了很长时间。... ]]></description>
			<content:encoded><![CDATA[<p>前几天WordPress2.7就已经放出来了，我第一时间通过“一键升级”插件对博客做了升级，很顺利，然后就考虑换模板了。</p>
<p>也许太久没接触CSS了，在改善模板的一些细节方面时，花费了很长时间。现在改好的样式基本还可以，在firefox下显示比较好，与IE下的显示有点小差异。本来还想添加“回复评论”的功能，但仔细看了一下相关资料，没搞清楚，只能暂且放弃。</p>
<p>StudioBlue 是一个收费的模板，功能比较多。原始的screenshot如下图：</p>
<p><img class="alignnone" title="studioblue" src="http://www.waterylife.com/wp-content/themes/StudioBlue/screenshot.png" alt="" width="300" height="240" /></p>
<p>PS：我是盗版使用者，请勿向我寻求模板，可Google <a href="http://www.google.com/search?q=Studio+Blue&amp;sourceid=navclient-ff&amp;ie=UTF-8&amp;rlz=1B3GGGL_zh-CNCN274CN274" target="_blank">Studio Blue</a>，去下载或购买。</p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html" title="WordPress的几个细节更改">WordPress的几个细节更改</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" title="付费WordPress Theme：Elegant Themes">付费WordPress Theme：Elegant Themes</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-coogee.html" title="推荐WordPress Theme: Coogee">推荐WordPress Theme: Coogee</a></li><li><a href="http://www.waterylife.com/articles/magazine-style-wordpress-theme.html" title="7款免费杂志型WordPress Theme">7款免费杂志型WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html" title="ThemeHybrid的一些免费WordPress Theme">ThemeHybrid的一些免费WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html" title="免费下载Revolution WordPress Themes">免费下载Revolution WordPress Themes</a></li><li><a href="http://www.waterylife.com/articles/waterylife-has-a-new-look.html" title="似水年华更改模板">似水年华更改模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html" title="Lunarpages举办WordPress模板大赛，奖品金额上万元">Lunarpages举办WordPress模板大赛，奖品金额上万元</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-105.html" title="WordPress Theme -10/5">WordPress Theme -10/5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>推荐WordPress Theme: Coogee</title>
		<link>http://www.waterylife.com/articles/wordpress-theme-coogee.html</link>
		<comments>http://www.waterylife.com/articles/wordpress-theme-coogee.html#comments</comments>
		<pubDate>Thu, 12 Jun 2008 12:11:49 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-theme]]></category>
		<category><![CDATA[wordpress模板]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/?p=542</guid>
		<description><![CDATA[WordPress Theme- Coogee 是一个固定宽度的两栏模板，非常简洁，具体效果直接见本博。个人很喜欢这个简洁的模板，尤其是清爽的侧边栏，所以今天就换上了。在Firefox和IE下的效果都不错，最佳分... ]]></description>
			<content:encoded><![CDATA[<p>WordPress Theme- Coogee 是一个固定宽度的两栏模板，非常简洁，具体效果直接见本博。个人很喜欢这个简洁的模板，尤其是清爽的侧边栏，所以今天就换上了。在Firefox和IE下的效果都不错，最佳分辨率确实是1024*768，我在1280*1024下看也不错。Features如下：</p>
<ul>
<li>支持 WordPress 2.5 版本</li>
<li>不支持 Widget</li>
<li>自带 “文章存档” 和 “友情链接” 页面</li>
<li>自带<a href="http://yanfeng.org/blog/wordpress/kit/" target="_blank">中文 WordPress 工具箱</a>插件, 实现最新回复功能</li>
<li>推荐插件: <a href="http://wordpress.org/extend/plugins/simple-tags/" target="_blank">Simple Tags</a>, Popularity Contest, <a href="http://blog.2i2j.com/plugins/wordpress-thread-comment" target="_blank">WP Thread Comment</a></li>
<li>提供适应主题的 <a href="http://blog.2i2j.com/plugins/wordpress-thread-comment" target="_blank">WP Thread Comment</a> CSS 修改方案</li>
</ul>
<p><a href="http://www.waterylife.com/wp-content/uploads/2008/06/coogee-theme-screen.gif"><img class="alignnone size-full wp-image-543" title="coogee-theme-screen" src="http://www.waterylife.com/wp-content/uploads/2008/06/coogee-theme-screen.gif" alt="" width="460" height="300" /></a></p>
<p>更多介绍可以去<a href="http://imotta.cn/wordpress/coogee-theme-for-wordpress.html" target="_blank">motta的博客</a>。</p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html" title="WordPress的几个细节更改">WordPress的几个细节更改</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" title="付费WordPress Theme：Elegant Themes">付费WordPress Theme：Elegant Themes</a></li><li><a href="http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html" title="升级到WordPress2.7，更换模板">升级到WordPress2.7，更换模板</a></li><li><a href="http://www.waterylife.com/articles/magazine-style-wordpress-theme.html" title="7款免费杂志型WordPress Theme">7款免费杂志型WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html" title="ThemeHybrid的一些免费WordPress Theme">ThemeHybrid的一些免费WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html" title="免费下载Revolution WordPress Themes">免费下载Revolution WordPress Themes</a></li><li><a href="http://www.waterylife.com/articles/waterylife-has-a-new-look.html" title="似水年华更改模板">似水年华更改模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html" title="Lunarpages举办WordPress模板大赛，奖品金额上万元">Lunarpages举办WordPress模板大赛，奖品金额上万元</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-105.html" title="WordPress Theme -10/5">WordPress Theme -10/5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/wordpress-theme-coogee.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>7款免费杂志型WordPress Theme</title>
		<link>http://www.waterylife.com/articles/magazine-style-wordpress-theme.html</link>
		<comments>http://www.waterylife.com/articles/magazine-style-wordpress-theme.html#comments</comments>
		<pubDate>Sun, 06 Apr 2008 11:38:53 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-theme]]></category>
		<category><![CDATA[wordpress模板]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/articles/magazine-style-wordpress-theme.html</guid>
		<description><![CDATA[1、The morning after 这是作者Arun Kale在WordPress论坛做过调查后，设计出一款magazine-style模板。该模板采用三栏结构，重点显示头条文章，很简洁。 下载 演示 模板发布页面 2、Visionary 这是一个新闻/... ]]></description>
			<content:encoded><![CDATA[<p><strong>1、<a href="http://themasterplan.in/themes/the-morning-after/" target="_blank">The morning after</a></strong><br />
<a href="http://themasterplan.in/wp-content/uploads/2007/09/home_preview_tma.png" target="_blank"><img src="http://themasterplan.in/wp-content/uploads/2007/09/home_preview_tma.png" height="200" /></a><br />
这是作者<strong>Arun Kale</strong>在WordPress论坛做过调查后，设计出一款magazine-style模板。该模板采用三栏结构，重点显示头条文章，很简洁。<br />
<a href="http://themasterplan.in/dl/The_Morning_After_1_3" target="_blank">下载</a>  <a href="http://themasterplan.in/wp-content/uploads/2007/09/home_preview_tma.png" target="_blank">演示</a>   <a href="http://themasterplan.in/themes/the-morning-after/" target="_blank">模板发布页面</a></p>
<p><strong>2、<a href="http://justintadlock.com/archives/2007/11/04/visionary-wordpress-theme" target="_blank" title="Visionary: WordPress Theme">Visionary</a></strong><br />
<a href="http://www.waterylife.com/wp-content/uploads/2008/04/visionary.gif" title="visionary.gif"><img src="http://www.waterylife.com/wp-content/uploads/2008/04/visionary.gif" alt="visionary.gif" height="200" /></a><br />
这是一个新闻/杂志型模板，特色的视频功能方便用户添加视频文件，适合于WordPress2.1以上版本。<br />
<a href="http://justintadlock.com/blog/wp-content/uploads/wordpress-themes/visionary.zip" target="_blank">下载</a>  <a href="http://www.waterylife.com/wp-content/uploads/2008/04/visionary.gif" target="_blank">演示</a>   <a href="http://justintadlock.com/archives/2007/11/04/visionary-wordpress-theme" target="_blank">模板发布页面</a></p>
<p><strong>3、<a href="http://justintadlock.com/archives/2007/12/09/structure-wordpress-theme" title="Structure: WordPress Theme">Structure</a></strong><br />
<a href="http://www.waterylife.com/wp-content/uploads/2008/04/structures.png" title="structures.png"><img src="http://www.waterylife.com/wp-content/uploads/2008/04/structures.png" alt="structures.png" height="200" /></a><br />
<a href="http://justintadlock.com/archives/2007/12/09/structure-wordpress-theme" title="Structure: WordPress Theme">Structure</a> 是<a href="http://justintadlock.com/archives/2007/11/04/visionary-wordpress-theme" title="Visionary: WordPress Theme">Visionary</a> 的延伸，适合WordPress2.3以上版本。<br />
<a href="http://justintadlock.com/blog/wp-content/uploads/wordpress-themes/structure.zip" target="_blank">下载</a>  <a href="http://justintadlock.com/archives/2007/12/09/structure-wordpress-theme" target="_blank">演示</a>   <a href="http://justintadlock.com/archives/2007/12/09/structure-wordpress-theme" target="_blank">模板发布页面</a></p>
<p><strong>4、<a href="http://justintadlock.com/archives/2008/03/26/options-wordpress-theme-version-11" target="_blank">Options WordPress Theme</a></strong><br />
<a href="http://www.waterylife.com/wp-content/uploads/2008/04/option.gif" title="option.gif"><img src="http://www.waterylife.com/wp-content/uploads/2008/04/option.gif" alt="option.gif" /></a><br />
Options 以黑色调为主，是justintadlock继<a href="http://justintadlock.com/archives/2007/12/09/structure-wordpress-theme" title="Structure: WordPress Theme">Structure</a>后的又一力作，适合WordPress2.3以上版本。<br />
<a href="http://justintadlock.com/blog/wp-content/uploads/wordpress-themes/options.zip" target="_blank">下载</a>  <a href="http://justintadlock.com/options/" target="_blank">演示</a>   <a href="http://justintadlock.com/archives/2008/03/26/options-wordpress-theme-version-11" target="_blank">模板发布页面</a></p>
<p><strong>5、<a href="http://www.darrenhoyt.com/2007/08/05/wordpress-magazine-theme-released/" target="_blank">Mimbo Magazine</a></strong><br />
<a href="http://www.darrenhoyt.com/2007/08/05/wordpress-magazine-theme-released/" target="_blank"><img src="http://www.darrenhoyt.com/images/blog/mimbo2_preview.png" height="200" /></a><br />
这是非常有名的一款免费杂志型WordPress模板，我见过很多朋友使用。<br />
<a href="http://www.darrenhoyt.com/downloads/mimbo2.2.zip" target="_blank">下载</a>  <a href="http://www.darrenhoyt.com/demo/mimbo2/" target="_blank">演示</a>   <a href="http://www.darrenhoyt.com/2007/08/05/wordpress-magazine-theme-released/" target="_blank">模板发布页面</a></p>
<p><strong>6、<a href="http://www.gabfire.com/wordpress-magazine-theme-released/" target="_blank">Worpress Magazine</a></strong><br />
<img src="http://www.gabfire.com/wp-content/uploads/2008/03/screenshot.png" height="225" width="300" /><br />
又是免费的，但作者申明了下载协议，那就是不可改动footer.php文件，保留版权。<br />
<a href="http://www.gabfire.com/downloads/WordPress-Magazine-Theme.zip" target="_blank">下载</a>  <a href="http://wp-magazine.gabfire.com/" target="_blank">演示</a>   <a href="http://www.gabfire.com/wordpress-magazine-theme-released/" target="_blank">模板发布页面</a></p>
<p><strong>7、<a href="http://www.der-prinz.com/2008/01/20/wordpress-magazine-style-theme-branfordmagazine/" target="_blank">BranfordMagazine</a></strong><br />
<img src="http://www.der-prinz.com/wp-content/uploads/2008/01/branfordmagazine_screenshot.jpg" height="200" /><br />
这款模板的很多元素来自于Revolution模板和Mimbo模板，是免费的。<br />
<a href="http://www.der-prinz.com/2008/01/20/download-branfordmagazine/" target="_blank">下载</a>  <a href="http://www.wp-themes.der-prinz.com/magazine/" target="_blank">演示</a>   <a href="http://www.der-prinz.com/2008/01/20/wordpress-magazine-style-theme-branfordmagazine/" target="_blank">模板发布页面</a></p>
<p>暂时收集这几个，以后继续丰富。如果您发现有类似的免费模板，可以留言向我推荐。</p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html" title="WordPress的几个细节更改">WordPress的几个细节更改</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" title="付费WordPress Theme：Elegant Themes">付费WordPress Theme：Elegant Themes</a></li><li><a href="http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html" title="升级到WordPress2.7，更换模板">升级到WordPress2.7，更换模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-coogee.html" title="推荐WordPress Theme: Coogee">推荐WordPress Theme: Coogee</a></li><li><a href="http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html" title="ThemeHybrid的一些免费WordPress Theme">ThemeHybrid的一些免费WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html" title="免费下载Revolution WordPress Themes">免费下载Revolution WordPress Themes</a></li><li><a href="http://www.waterylife.com/articles/waterylife-has-a-new-look.html" title="似水年华更改模板">似水年华更改模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html" title="Lunarpages举办WordPress模板大赛，奖品金额上万元">Lunarpages举办WordPress模板大赛，奖品金额上万元</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-105.html" title="WordPress Theme -10/5">WordPress Theme -10/5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/magazine-style-wordpress-theme.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>似水年华更改模板</title>
		<link>http://www.waterylife.com/articles/waterylife-has-a-new-look.html</link>
		<comments>http://www.waterylife.com/articles/waterylife-has-a-new-look.html#comments</comments>
		<pubDate>Mon, 24 Dec 2007 14:58:08 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress-theme]]></category>
		<category><![CDATA[模板]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/articles/waterylife-has-a-new-look.html</guid>
		<description><![CDATA[很久没向模板动刀子了，经过一番考虑，决定修改一下模板。模板仍是那个模板，只是将三栏改成两栏，改变了背景颜色和侧边栏。这个模板就是号称经过经过N次SEO/搜索优化的那个，似乎已经... ]]></description>
			<content:encoded><![CDATA[<p>很久没向模板动刀子了，经过一番考虑，决定修改一下模板。模板仍是那个模板，只是将三栏改成两栏，改变了背景颜色和侧边栏。这个模板就是号称经过经过N次<a href="http://www.waterylife.com/articles/category/seo-sem">SEO/搜索优化</a>的那个，似乎已经给我改得面目全非了 <img src='http://www.waterylife.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>也不知效果怎么样，大家给我提点意见。（下面贴出模板的进化图）</p>
<p style="text-align: center"><img src="http://www.waterylife.com/wp-content/themes/mytheme01/screenshot.jpg" alt="3c-seo" width="580" /></p>
<p align="center">图1：原始模板</p>
<p align="center"><a href="http://www.waterylife.com/wp-content/uploads/2007/12/3c.gif"><img src="http://www.waterylife.com/wp-content/uploads/2007/12/3c.gif" alt="3c-seo" width="580" /></a></p>
<p align="center">图2：第一次修改后的样式(点击图片看原始图)</p>
<p align="center"><a href="http://www.waterylife.com/wp-content/uploads/2007/12/newtheme.gif" title="newtheme.gif"><img src="http://www.waterylife.com/wp-content/uploads/2007/12/newtheme.gif" alt="newtheme" width="580" /></a></p>
<p align="center"> 图3：这次修改后的样式(点击图片看原始图)</p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html" title="WordPress的几个细节更改">WordPress的几个细节更改</a></li><li><a href="http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html" title="ThemeHybrid的一些免费WordPress Theme">ThemeHybrid的一些免费WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html" title="免费下载Revolution WordPress Themes">免费下载Revolution WordPress Themes</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" title="付费WordPress Theme：Elegant Themes">付费WordPress Theme：Elegant Themes</a></li><li><a href="http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html" title="升级到WordPress2.7，更换模板">升级到WordPress2.7，更换模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-coogee.html" title="推荐WordPress Theme: Coogee">推荐WordPress Theme: Coogee</a></li><li><a href="http://www.waterylife.com/articles/magazine-style-wordpress-theme.html" title="7款免费杂志型WordPress Theme">7款免费杂志型WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html" title="Lunarpages举办WordPress模板大赛，奖品金额上万元">Lunarpages举办WordPress模板大赛，奖品金额上万元</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-105.html" title="WordPress Theme -10/5">WordPress Theme -10/5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/waterylife-has-a-new-look.html/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Lunarpages举办WordPress模板大赛，奖品金额上万元</title>
		<link>http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html</link>
		<comments>http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html#comments</comments>
		<pubDate>Thu, 29 Nov 2007 02:49:47 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[博客赚钱]]></category>
		<category><![CDATA[lunarpages]]></category>
		<category><![CDATA[wordpress-theme]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html</guid>
		<description><![CDATA[为迎接圣诞节的到来，Lunarpages决定举办一次WordPress模板大赛。Lunarpages是谁？Lunarpages是美国10大虚拟主机商之一，似水年华就是hold在他们的空间上。参赛对象很广，基本上每个人都可以参加。 ... ]]></description>
			<content:encoded><![CDATA[<p>为迎接圣诞节的到来，<strong>Lunarpages</strong>决定举办一次<strong>WordPress</strong>模板大赛。Lunarpages是谁？Lunarpages是美国10大虚拟主机商之一，<a href="http://www.waterylife.com">似水年华</a>就是hold在他们的空间上。参赛对象很广，基本上每个人都可以参加。</p>
<p><strong>奖项设置：</strong><br />
一等奖：1000美元现金 + 5年的<a href="http://www.lunarpages.com/basic-hosting/">虚拟主机Basic方案</a>（注：似水年华使用的就是这个）<br />
二等奖：300美元现金 + 3年的虚拟主机Basic方案<br />
三等奖：100美元现金 + 1年的虚拟主机Basic方案</p>
<p><strong>赛程安排：</strong></p>
<p><strong>1、预赛：</strong><br />
预赛从12月10号开始，于2008年1月22号结束，一共6 个星期，将产生12个模板来参加决赛。参赛模板在这段时间内都可投递。<br />
2007年12月10—16号<br />
2007年12月17—23号<br />
2007年12月24—30号<br />
2007年12月31—2008年1月6号<br />
2008年1月7—13号<br />
2008年1月14—20号</p>
<p>在上面6个星期中，Lunarpages从每个星期的参赛模板中选出5个，把这5个模板放在<a href="http://blog.lunarpages.com/">Lunarpages的博客</a>上给用户投票，让用户选出最喜欢的一个模板。每个星期的胜出者即可进入决赛的12名。<br />
除了这6个模板，Lunarpages的工作人员将选出另外6个模板。<br />
<strong><br />
2、决赛：</strong><br />
这12个模板将从2008年23号开始由用户投票，维持2周的，于2008年23号结束投票。最终获奖者将于2008年2月24号在Lunarpages的博客和Newsletter上公布。</p>
<p><strong>参赛协议&amp;条件</strong><br />
1、WordPress模板大赛由Lunarpages举办，大赛时间从2007年12月10号到2008年2月24号。<br />
2、年满18岁，除了Lunarpages的工作人员、商业伙伴和家庭成员外，都可以参加比赛。<br />
3、参赛者遵守赛制规则和美国、加利福尼亚法律。<br />
4、不遵守规则和协议的参赛者将被视情况取消参赛资格。<br />
5、参赛模板可在submission form 提交，模板压缩包必须是ZIP文件格式。<br />
6、参赛者可以提交多个模板，但只能获得一个奖项。<br />
7、参赛模板必须是参赛者自己设计的，或者能够提供原设计者的授权使用证据。<br />
8、所有参赛模板将被公开、免费下载，但Lunarpages没有模板的版权，版权仍归设计者所有。<br />
9、参赛者不能提交带侮辱性的、色情的、淫秽的、犯罪的或成人模板，否则将被取消参赛资格。<br />
10、评判标准是模板的创意、原创性、整体性和唯一性。</p>
<p>更多详情可参考：<a href="http://www.web-hosting-newsletter.com/2007/11/27/wordpress-design-contest-win-5-years-web-hosting-and-1000/" rel="bookmark" title="Permanent Link: WordPress Design Contest - Win 5 years Web Hosting AND $1000!">WordPress Design Contest &#8211; Win 5 years Web Hosting AND $1000!</a></p>
<p>参赛条件参考：<a href="http://blog.lunarpages.com/wordpress_themes_contest_terms.php">Lunarpages WordPress Theme Design Contest &#8211; Terms and Conditions!</a></p>
<p>模板作品提交：<a href="http://blog.lunarpages.com/wordpress_themes_contest.php">Lunarpages WordPress Theme Design Contest!<br />
</a></p>
<p>感兴趣的朋友赶快去参加啊~~~ <img src='http://www.waterylife.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html" title="WordPress的几个细节更改">WordPress的几个细节更改</a></li><li><a href="http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html" title="ThemeHybrid的一些免费WordPress Theme">ThemeHybrid的一些免费WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html" title="免费下载Revolution WordPress Themes">免费下载Revolution WordPress Themes</a></li><li><a href="http://www.waterylife.com/articles/lunarpages-winter-special.html" title="Lunarpages冬季促销，仅需$4.95/月">Lunarpages冬季促销，仅需$4.95/月</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" title="付费WordPress Theme：Elegant Themes">付费WordPress Theme：Elegant Themes</a></li><li><a href="http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html" title="升级到WordPress2.7，更换模板">升级到WordPress2.7，更换模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-coogee.html" title="推荐WordPress Theme: Coogee">推荐WordPress Theme: Coogee</a></li><li><a href="http://www.waterylife.com/articles/lunarpages-new-coupon-spring-and-win3.html" title="Lunarpages主机最新优惠券，只需$4.95/月">Lunarpages主机最新优惠券，只需$4.95/月</a></li><li><a href="http://www.waterylife.com/articles/magazine-style-wordpress-theme.html" title="7款免费杂志型WordPress Theme">7款免费杂志型WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/lunarpages-basic-hosting-plan-addon-unlimited-domains.html" title="Lunarpages的Basic主机方案升级，可绑定无限域名">Lunarpages的Basic主机方案升级，可绑定无限域名</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Theme -10/5</title>
		<link>http://www.waterylife.com/articles/wordpress-theme-105.html</link>
		<comments>http://www.waterylife.com/articles/wordpress-theme-105.html#comments</comments>
		<pubDate>Fri, 05 Oct 2007 04:14:59 +0000</pubDate>
		<dc:creator>yiyix</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress-theme]]></category>

		<guid isPermaLink="false">http://www.waterylife.com/articles/wordpress-theme-105.html</guid>
		<description><![CDATA[weblogtoolscollection 发布的几个WordPress模板： Ranting Pink &#8211; 两栏，粉红底色的模板，很漂亮，比较适合女生的博客，可惜很少看到女生玩WordPress的。 Trevilian Way &#8211; 这个模板的主页排版比较特... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://weblogtoolscollection.com/archives/2007/10/04/wordpress-theme-releases-for-104/">weblogtoolscollection</a> 发布的几个WordPress模板：</p>
<p><a href="http://rantingdaily.com/2007/10/ranting-pink-10-theme-release/" target="_blank">Ranting Pink</a>  &#8211;   两栏，粉红底色的模板，很漂亮，比较适合女生的博客，可惜很少看到女生玩WordPress的。</p>
<p><a href="http://thedesigncanopy.com/downloads/trevilian-way/" target="_blank">Trevilian Way</a>  &#8211;   这个模板的主页排版比较特别，有点像电子杂志，很不错的。</p>
<p><a href="http://designadaptations.com/notebook/pink-adaptations-wordpress-theme/" rel="bookmark" title="Permanent Link:  			Pink Adaptations - WordPress Theme">Pink Adaptations</a>  &#8211;   又一粉色背景的模板，很大方。</p>
<p><a href="http://cdharrison.com/2007/09/01/effercio-blue/">Effercio Blu</a>    -   蓝色背景，两栏，推荐！</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>国庆快结束了，大家玩得开心吗？  <img src='http://www.waterylife.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4  class="related_post_title">相关文章</h4><ul class="related_post"><li><a href="http://www.waterylife.com/articles/modify-some-details-of-wordpress-theme.html" title="WordPress的几个细节更改">WordPress的几个细节更改</a></li><li><a href="http://www.waterylife.com/articles/themehybrid-free-wordpress-theme.html" title="ThemeHybrid的一些免费WordPress Theme">ThemeHybrid的一些免费WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/free-download-revolution-wordpress-themes.html" title="免费下载Revolution WordPress Themes">免费下载Revolution WordPress Themes</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-elegant-themes-2.html" title="付费WordPress Theme：Elegant Themes">付费WordPress Theme：Elegant Themes</a></li><li><a href="http://www.waterylife.com/articles/upgrade-to-wordpress27-change-theme.html" title="升级到WordPress2.7，更换模板">升级到WordPress2.7，更换模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-theme-coogee.html" title="推荐WordPress Theme: Coogee">推荐WordPress Theme: Coogee</a></li><li><a href="http://www.waterylife.com/articles/magazine-style-wordpress-theme.html" title="7款免费杂志型WordPress Theme">7款免费杂志型WordPress Theme</a></li><li><a href="http://www.waterylife.com/articles/waterylife-has-a-new-look.html" title="似水年华更改模板">似水年华更改模板</a></li><li><a href="http://www.waterylife.com/articles/wordpress-design-contest-win-5-years-web-hosting-and-1000.html" title="Lunarpages举办WordPress模板大赛，奖品金额上万元">Lunarpages举办WordPress模板大赛，奖品金额上万元</a></li><li><a href="http://www.waterylife.com/articles/two-revolutional-wordpress-themes.html" title="两款革命性的WordPress模板">两款革命性的WordPress模板</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.waterylife.com/articles/wordpress-theme-105.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
