<?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模板</title>
	<atom:link href="http://www.waterylife.com/articles/tag/wordpress%e6%a8%a1%e6%9d%bf/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>付费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>
	</channel>
</rss>
