<?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>David&#039;s Simple Life &#187; 主题</title> <atom:link href="http://simplife.org/tag/%e4%b8%bb%e9%a2%98/feed" rel="self" type="application/rss+xml" /><link>http://simplife.org</link> <description>Hope is a good thing, maybe the best of things, and no good thing ever dies.</description> <lastBuildDate>Tue, 03 Jan 2012 07:41:41 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>WordPress主题P2固定链接bug解决方法</title><link>http://simplife.org/2009/06/18/wordpress-p2-permanent-link-bug-fix.html</link> <comments>http://simplife.org/2009/06/18/wordpress-p2-permanent-link-bug-fix.html#comments</comments> <pubDate>Thu, 18 Jun 2009 05:47:51 +0000</pubDate> <dc:creator>David.He</dc:creator> <category><![CDATA[IT互联网]]></category> <category><![CDATA[知识学习]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[主题]]></category> <guid
isPermaLink="false">http://simplife.org/?p=1276</guid> <description><![CDATA[WordPress主题P2是由 Automattic 开发的一款类似 twitter 式的微博客主题，适用于团队间的信息互通，或者个人式的 blah blah等。 我在一个博客中用了P2主题，使用的过程中，David发现个关于固定链接(Permanent Link)的bug，在wordpress官方也有用户反应此bug，并提出了解决方案，我将其翻译整理了一下。同时根据我自己的需求将该主题默认的显示评论调整成了隐藏评论，有相关需求的朋友也可以看一下。 Part 1. Bug Issue: 在1.04版本中，标题显示的链接和Permanent Link地址是不一致。 例如：标题的title链接是http://www.mydomain.com/?p=123，但是按照你在后台设置的规则链接应该是http://www.mydomain.com/2009/05/sample-post/。 解决方法： 问题出现在functions.php中，打开主题下的该文件，第366行修改为： echo (is_single()) ? $before.$t.$after : $before.''.$t.''.$after; 保存即可。 Part 2. WordPress P2默认是显示评论的，点击Hide Threads之后才可以隐藏。而我更希望默认隐藏，点击之后再显示，修改方法如下： 1. 打开index.php，把 < ?php _e('Hide threads', 'p2'); ?> 修改为 < ?php _e('Show threads', 'p2'); ?> 2.打开inline-comments.php，把 echo " \n"; 修改为 echo " \n"; 3.打开&#8217;inc/p2.js&#8217; 在第456行添加如下代码： [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://wordpress.org/extend/themes/p2">WordPress主题P2</a>是由 Automattic 开发的一款类似 twitter 式的微博客主题，适用于团队间的信息互通，或者个人式的 blah blah等。</p><p>我在一个博客中用了P2主题，使用的过程中，David发现个关于固定链接(Permanent Link)的bug，在wordpress官方也有用户反应此bug，并提出了解决方案，我将其翻译整理了一下。同时根据我自己的需求将该主题默认的显示评论调整成了隐藏评论，有相关需求的朋友也可以看一下。</p><p>Part 1. <strong>Bug Issue:</strong></p><blockquote><p>在1.04版本中，标题显示的链接和Permanent Link地址是不一致。<br
/> 例如：标题的title链接是http://www.mydomain.com/?p=123，但是按照你在后台设置的规则链接应该是http://www.mydomain.com/2009/05/sample-post/。</p></blockquote><p><span
id="more-1276"></span><br
/> <strong>解决方法：</strong></p><blockquote><p>问题出现在functions.php中，打开主题下的该文件，第366行修改为：</p><pre lang="php" line="">echo (is_single()) ? $before.$t.$after : $before.'<a href="'.get_permalink( $post-&gt;id ).'">'.$t.'</a>'.$after;</pre><p>保存即可。</p></blockquote><p>Part 2. <strong>WordPress P2默认是显示评论的，点击Hide Threads之后才可以隐藏。而我更希望默认隐藏，点击之后再显示，</strong>修改方法如下：</p><blockquote><p> 1. 打开index.php，把</p><pre lang="php" line="">< ?php _e('Hide threads', 'p2'); ?></pre><p>修改为</p><pre lang="php" line="">< ?php _e('Show threads', 'p2'); ?></pre></blockquote><blockquote><p>2.打开inline-comments.php，把</p><pre lang="php" line="">echo "
<ul class=\"commentlist inlinecomments\">\n";</ul>
</pre><p>修改为</p><pre lang="php" line="">echo "
<ul class=\"commentlist inlinecomments\" style='display:none;'>\n";</ul>
</pre></blockquote><blockquote><p>3.打开&#8217;inc/p2.js&#8217; 在第456行添加如下代码：</p><pre lang="java" line="">var hidecomments = true;</pre></blockquote><p>OK，修改完毕。</p><h3  class="related_post_title">相关文章</h3><ul
class="related_post"><li>April 16, 2009 -- <a
href="http://simplife.org/2009/04/16/evidens-design-disease-new-wordpress-theme.html" title="Evidens, Design Disease新WordPress主题作品">Evidens, Design Disease新WordPress主题作品</a></li><li>January 22, 2009 -- <a
href="http://simplife.org/2009/01/22/wordpress-theme-intext-theme.html" title="Wordpress新主题InText">Wordpress新主题InText</a></li><li>October 15, 2008 -- <a
href="http://simplife.org/2008/10/15/new-wordpress-theme-updating-tips.html" title="更换Wordpress主题的Tips">更换Wordpress主题的Tips</a></li><li>June 4, 2007 -- <a
href="http://simplife.org/2007/06/04/iblue-theme-for-wordpress.html" title="Nicky做的新主题iBlue">Nicky做的新主题iBlue</a></li><li>May 21, 2007 -- <a
href="http://simplife.org/2007/05/21/update-wordpress-change-theme.html" title="Update Wordpress, Change theme">Update Wordpress, Change theme</a></li></ul>]]></content:encoded> <wfw:commentRss>http://simplife.org/2009/06/18/wordpress-p2-permanent-link-bug-fix.html/feed</wfw:commentRss> <slash:comments>27</slash:comments> </item> <item><title>Evidens, Design Disease新WordPress主题作品</title><link>http://simplife.org/2009/04/16/evidens-design-disease-new-wordpress-theme.html</link> <comments>http://simplife.org/2009/04/16/evidens-design-disease-new-wordpress-theme.html#comments</comments> <pubDate>Thu, 16 Apr 2009 02:34:42 +0000</pubDate> <dc:creator>David.He</dc:creator> <category><![CDATA[知识学习]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[主题]]></category> <guid
isPermaLink="false">http://simplife.org/?p=1208</guid> <description><![CDATA[Evidens是著名的主题设计者Design Disease的新作品，3栏布局，全屏宽度。 该主题有白色和黑色两款，这款充满现代感和工业感的WordPress显得既优雅大度又结构紧凑。三栏的布局为广告和文字链接留出了绝佳的位置。Evidens主题为博客的文章内容留出了足够的空间，确保你有足够的空间可以放置最新的宽屏视频以及各种靓丽的图片。主题的选项集成了Flickr和Twitter两款流行的功能，你可以随时通过他们和好友共享自己的最新动态。 Evidens主题灵活多变，适用于各种内容的博客，无论是技术类的，男人兴趣类的，甚至是时尚设计类的博客，使用Evidens主题都会显得颇为完美。 同时，在Evidens主题中，你可以使用WordPress默认的博客名称或者使用自己个性化的图片logo。把你的logo上传到Evidens主题的根目录，并将其命名为logo.png即可。当然，你可以用主题目录下面的PSD Logo Template内的源文件来自己修改。(记得图片的大小不要超过500px*70px) 激活这个选项非常简单： 管理面板——外观——logo选项，然后选择你的logo类型即可。 Evidens白色 * 主题演示 * 主题下载 Evidens黑色 * 主题演示 * 主题下载 在下载包内，有psd logo文件和必须的插件。 该主题作品遵守Creative Commons Attribution-Share Alike 3.0 License，这意味着你可以使用本主题，也可以做修改。但是处于对作者的尊重，请保留主题底部的链接。 原文链接：http://designdisease.com/blog/evidens-wordpress-theme-release/ (英文) 相关文章June 18, 2009 -- Wordpress主题P2固定链接bug解决方法January 22, 2009 -- Wordpress新主题InTextOctober 15, 2008 -- 更换Wordpress主题的TipsJune 4, 2007 -- Nicky做的新主题iBlueMay 21, 2007 -- Update Wordpress, Change theme]]></description> <content:encoded><![CDATA[<p><a
href="http://designdisease.com/blog/evidens-wordpress-theme-release/">Evidens</a>是著名的主题设计者Design Disease的新作品，3栏布局，全屏宽度。 该主题有<a
href="http://designdisease.com/preview/evidens-white">白色</a>和<a
href="http://designdisease.com/preview/evidens-dark">黑色</a>两款，这款充满现代感和工业感的WordPress显得既优雅大度又结构紧凑。三栏的布局为广告和文字链接留出了绝佳的位置。Evidens主题为博客的文章内容留出了足够的空间，确保你有足够的空间可以放置最新的宽屏视频以及各种靓丽的图片。主题的选项集成了<a
href="http://eightface.com/wordpress/flickrrss/">Flickr</a>和<a
href="http://twitter.com/">Twitter</a>两款流行的功能，你可以随时通过他们和好友共享自己的最新动态。</p><p>Evidens主题灵活多变，适用于各种内容的博客，无论是技术类的，男人兴趣类的，甚至是时尚设计类的博客，使用Evidens主题都会显得颇为完美。<br
/> <span
id="more-1208"></span><br
/> 同时，在Evidens主题中，你可以使用WordPress默认的博客名称或者使用自己个性化的图片logo。把你的logo上传到Evidens主题的根目录，并将其命名为logo.png即可。当然，你可以用主题目录下面的PSD Logo Template内的源文件来自己修改。(记得图片的大小不要超过500px*70px)</p><p>激活这个选项非常简单：<br
/> 管理面板——外观——logo选项，然后选择你的logo类型即可。</p><blockquote><p>Evidens白色<br
/> * <a
href="http://designdisease.com/preview/evidens-white">主题演示</a><br
/> * <a
href="http://designdisease.com/download-manager.php?id=15">主题下载</a><br
/> Evidens黑色<br
/> * <a
href="http://designdisease.com/preview/evidens-dark">主题演示</a><br
/> * <a
href="http://designdisease.com/download-manager.php?id=14">主题下载</a></p></blockquote><p>在下载包内，有psd logo文件和必须的插件。</p><p>该主题作品遵守<a
href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-Share Alike 3.0 License</a>，这意味着你可以使用本主题，也可以做修改。但是处于对作者的尊重，请保留主题底部的链接。</p><p>原文链接：<a
href="http://designdisease.com/blog/evidens-wordpress-theme-release/">http://designdisease.com/blog/evidens-wordpress-theme-release/</a> (英文)</p><h3  class="related_post_title">相关文章</h3><ul
class="related_post"><li>June 18, 2009 -- <a
href="http://simplife.org/2009/06/18/wordpress-p2-permanent-link-bug-fix.html" title="Wordpress主题P2固定链接bug解决方法">Wordpress主题P2固定链接bug解决方法</a></li><li>January 22, 2009 -- <a
href="http://simplife.org/2009/01/22/wordpress-theme-intext-theme.html" title="Wordpress新主题InText">Wordpress新主题InText</a></li><li>October 15, 2008 -- <a
href="http://simplife.org/2008/10/15/new-wordpress-theme-updating-tips.html" title="更换Wordpress主题的Tips">更换Wordpress主题的Tips</a></li><li>June 4, 2007 -- <a
href="http://simplife.org/2007/06/04/iblue-theme-for-wordpress.html" title="Nicky做的新主题iBlue">Nicky做的新主题iBlue</a></li><li>May 21, 2007 -- <a
href="http://simplife.org/2007/05/21/update-wordpress-change-theme.html" title="Update Wordpress, Change theme">Update Wordpress, Change theme</a></li></ul>]]></content:encoded> <wfw:commentRss>http://simplife.org/2009/04/16/evidens-design-disease-new-wordpress-theme.html/feed</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>WordPress新主题InText</title><link>http://simplife.org/2009/01/22/wordpress-theme-intext-theme.html</link> <comments>http://simplife.org/2009/01/22/wordpress-theme-intext-theme.html#comments</comments> <pubDate>Thu, 22 Jan 2009 15:22:13 +0000</pubDate> <dc:creator>David.He</dc:creator> <category><![CDATA[知识学习]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[主题]]></category> <guid
isPermaLink="false">http://simplife.org/?p=1075</guid> <description><![CDATA[David偶然发现一款特别钟情的WordPress主题，就是我现在用的：InText Theme Origin Design by Instah InText最先是由Instah发布，名为InGrace，后来lzyy看中了它简洁的风格，于是开始对它进行了二度加工。InText的取名，保留了原作者的前半部分(In)，而Text则是这款主题的最大风格——没有图片。关于这款主题的特性请看http://www.lzyy.name/blog/archives/1。(updated: http://code.google.com/p/intext/) 第一眼看上去，这款主题和AW同学的TES有相似之处。我本人对于这两款主题都非常喜爱，于是又结合AW同学的主题，决定做一些改动。 原主题特点： 只有一张图片(右上角的RSS图标)，没有js文件。 支持wordpress2.7内置的嵌套式评论 新增加TES的几个特点： 增加了导航栏，把博客的分类作为博客的导航栏。 增加“正在加载”（loading）效果。 支持Gravatar。 目前发现的原主题的bug： #bug1:在评论关闭的时候，侧边栏会发生错位，作者说在下个版本修复。 #bug2:贝壳同学提到Google Friend Connect的错位问题。(fixed) #bug3:IE6下面评论回复样式有错位，IE7没测试。 待更新 相关文章June 18, 2009 -- Wordpress主题P2固定链接bug解决方法April 16, 2009 -- Evidens, Design Disease新WordPress主题作品October 15, 2008 -- 更换Wordpress主题的TipsJune 4, 2007 -- Nicky做的新主题iBlueMay 21, 2007 -- Update Wordpress, Change theme]]></description> <content:encoded><![CDATA[<p>David偶然发现一款特别钟情的WordPress主题，就是我现在用的：<strong>InText</strong> Theme Origin Design by <strong><a
href="http://web.instah.com/">Instah</a></strong></p><p>InText最先是由<a
href="http://web.instah.com/">Instah</a>发布，名为InGrace，后来<a
href="http://lab.pianzhizhe.com/">lzyy</a>看中了它简洁的风格，于是开始对它进行了二度加工。InText的取名，保留了原作者的前半部分(In)，而Text则是这款主题的最大风格——没有图片。关于这款主题的特性请看<del
datetime="2009-03-31T07:24:53+00:00"><a
href="http://www.lzyy.name/blog/archives/1">http://www.lzyy.name/blog/archives/1</a></del>。(updated: <a
href="http://code.google.com/p/intext/">http://code.google.com/p/intext/</a>)</p><p>第一眼看上去，这款主题和<a
href="http://www.awflasher.com/blog/">AW同学</a>的<a
href="http://www.awflasher.com/blog/archives/1061">TES</a>有相似之处。我本人对于这两款主题都非常喜爱，于是又结合AW同学的主题，决定做一些改动。<br
/> <span
id="more-1075"></span><br
/> 原主题特点：</p><blockquote><ul><li>只有一张图片(右上角的RSS图标)，没有js文件。</li><li>支持wordpress2.7内置的嵌套式评论</li></ul></blockquote><p>新增加TES的几个特点：</p><blockquote><ul><li>增加了导航栏，把博客的分类作为博客的导航栏。</li><li>增加“正在加载”（loading）效果。</li><li>支持Gravatar。</li></ul></blockquote><p>目前发现的原主题的bug：</p><blockquote><p>#bug1:在评论关闭的时候，侧边栏会发生错位，作者说在下个版本修复。<br
/> #bug2:<del
datetime="2009-01-24T20:06:00+00:00">贝壳同学提到Google Friend Connect的错位问题。</del>(fixed)<br
/> #bug3:IE6下面评论回复样式有错位，IE7没测试。</p></blockquote><p>待更新</p><h3  class="related_post_title">相关文章</h3><ul
class="related_post"><li>June 18, 2009 -- <a
href="http://simplife.org/2009/06/18/wordpress-p2-permanent-link-bug-fix.html" title="Wordpress主题P2固定链接bug解决方法">Wordpress主题P2固定链接bug解决方法</a></li><li>April 16, 2009 -- <a
href="http://simplife.org/2009/04/16/evidens-design-disease-new-wordpress-theme.html" title="Evidens, Design Disease新WordPress主题作品">Evidens, Design Disease新WordPress主题作品</a></li><li>October 15, 2008 -- <a
href="http://simplife.org/2008/10/15/new-wordpress-theme-updating-tips.html" title="更换Wordpress主题的Tips">更换Wordpress主题的Tips</a></li><li>June 4, 2007 -- <a
href="http://simplife.org/2007/06/04/iblue-theme-for-wordpress.html" title="Nicky做的新主题iBlue">Nicky做的新主题iBlue</a></li><li>May 21, 2007 -- <a
href="http://simplife.org/2007/05/21/update-wordpress-change-theme.html" title="Update Wordpress, Change theme">Update Wordpress, Change theme</a></li></ul>]]></content:encoded> <wfw:commentRss>http://simplife.org/2009/01/22/wordpress-theme-intext-theme.html/feed</wfw:commentRss> <slash:comments>32</slash:comments> </item> <item><title>更换WordPress主题的Tips</title><link>http://simplife.org/2008/10/15/new-wordpress-theme-updating-tips.html</link> <comments>http://simplife.org/2008/10/15/new-wordpress-theme-updating-tips.html#comments</comments> <pubDate>Wed, 15 Oct 2008 09:53:01 +0000</pubDate> <dc:creator>David.He</dc:creator> <category><![CDATA[知识学习]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[主题]]></category> <guid
isPermaLink="false">http://simplife.org/?p=570</guid> <description><![CDATA[今天把原来的Elegent Box主题换成了Block2，作者同为mg12。作者本人对这两款主题评价如下： Elegant Box: 以 dayvan 为框架, 参考过 N 多个主题制作而成. 现在看来 XHTML 和 CSS 都写得有点烂, 架构中有些标签名字和它的实质用途没对上, 也没规范, 样式表中还使用很多固定宽度的属性. 我在这个主题做了无数的实验, 绝对是我学习 WordPress 主题制作的试验田. Blocks2: 从零开始, 沿用 Blocks2 的色调, 为节省空间而淡化了边界的概念, 也是一个零图片的主题. 这主题没有太多新的东西, 功能也没前面两个丰富, 但结构比较清晰. 这个主题带来了一些提高用户体现的功能, 使用了大量的 JavaScript 代码 (没有使用 framework). 两款主题比较相似，对David个人来讲，只是略微改变了一下细节和布局。不过由于之前个人修过了不少东西，所以有些代码和样式还有待修改。在此记录一下便于下次更新主题的时候查询，也供其他童鞋们更换主题的时候参考： 头部文件(Header)；验证信息添加等 尾部文件(Footer)；统计代码等 对比原主题模板，根据自己的需求修改其他模板文件；(single post添加版权信息) 根据主题要求，配置相关的插件；(修改WP Thread Comment插件的样式，以适应主题；) 修改CSS样式，以适应新的插件或者个性化的风格； 其他个性化的修改。 相关文章June 18, 2009 -- Wordpress主题P2固定链接bug解决方法April 16, 2009 [...]]]></description> <content:encoded><![CDATA[<p>今天把原来的<a
href="http://www.neoease.com/elegant-box/">Elegent Box</a>主题换成了<a
href="http://www.neoease.com/blocks2/">Block2</a>，作者同为<a
href="http://www.neoease.com/">mg12</a>。作者本人对这两款主题评价如下：</p><blockquote><p>Elegant Box: 以 dayvan 为框架, 参考过 N 多个主题制作而成. 现在看来 XHTML 和 CSS 都写得有点烂, 架构中有些标签名字和它的实质用途没对上, 也没规范, 样式表中还使用很多固定宽度的属性. 我在这个主题做了无数的实验, 绝对是我学习 WordPress 主题制作的试验田.</p></blockquote><blockquote><p>Blocks2: 从零开始, 沿用 Blocks2 的色调, 为节省空间而淡化了边界的概念, 也是一个零图片的主题. 这主题没有太多新的东西, 功能也没前面两个丰富, 但结构比较清晰. 这个主题带来了一些提高用户体现的功能, 使用了大量的 JavaScript 代码 (没有使用 framework).</p></blockquote><p><span
id="more-570"></span><br
/> 两款主题比较相似，对David个人来讲，只是略微改变了一下细节和布局。不过由于之前个人修过了不少东西，所以有些代码和样式还有待修改。在此记录一下便于下次更新主题的时候查询，也供其他童鞋们更换主题的时候参考：</p><ul><li>头部文件(Header)；验证信息添加等</li><li>尾部文件(Footer)；统计代码等</li><li>对比原主题模板，根据自己的需求修改其他模板文件；(<del
datetime="2008-10-16T06:12:11+00:00">single post添加版权信息</del>)</li><li>根据主题要求，配置相关的插件；(<del
datetime="2008-10-16T06:12:11+00:00">修改<a
href="http://blog.2i2j.com/plugins/wordpress-thread-comment">WP Thread Comment</a>插件的样式，以适应主题；</del>)</li><li>修改CSS样式，以适应新的插件或者个性化的风格；</li><li>其他个性化的修改。</li></ul><h3  class="related_post_title">相关文章</h3><ul
class="related_post"><li>June 18, 2009 -- <a
href="http://simplife.org/2009/06/18/wordpress-p2-permanent-link-bug-fix.html" title="Wordpress主题P2固定链接bug解决方法">Wordpress主题P2固定链接bug解决方法</a></li><li>April 16, 2009 -- <a
href="http://simplife.org/2009/04/16/evidens-design-disease-new-wordpress-theme.html" title="Evidens, Design Disease新WordPress主题作品">Evidens, Design Disease新WordPress主题作品</a></li><li>January 22, 2009 -- <a
href="http://simplife.org/2009/01/22/wordpress-theme-intext-theme.html" title="Wordpress新主题InText">Wordpress新主题InText</a></li><li>June 4, 2007 -- <a
href="http://simplife.org/2007/06/04/iblue-theme-for-wordpress.html" title="Nicky做的新主题iBlue">Nicky做的新主题iBlue</a></li><li>May 21, 2007 -- <a
href="http://simplife.org/2007/05/21/update-wordpress-change-theme.html" title="Update Wordpress, Change theme">Update Wordpress, Change theme</a></li></ul>]]></content:encoded> <wfw:commentRss>http://simplife.org/2008/10/15/new-wordpress-theme-updating-tips.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Nicky做的新主题iBlue</title><link>http://simplife.org/2007/06/04/iblue-theme-for-wordpress.html</link> <comments>http://simplife.org/2007/06/04/iblue-theme-for-wordpress.html#comments</comments> <pubDate>Mon, 04 Jun 2007 12:13:58 +0000</pubDate> <dc:creator>David.He</dc:creator> <category><![CDATA[杂谈视野]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[主题]]></category> <category><![CDATA[博客]]></category> <category><![CDATA[朋友]]></category> <guid
isPermaLink="false">http://www.6571.net/weblog/?p=388</guid> <description><![CDATA[经过9个月的精雕细琢之后，Nicky终于放出了自己的iBlue主题。效果见本站 之前我也在用Nicky的主题，不过是这个主题的原始版，这次的iBlue感觉相当不错，极其符合我的风格。推荐一下。 这个主题的一些信息： iBlue Theme 基于 Default 1.6 主题制作。 iBlue Theme 适用于 WordPress 2.x 版本。 iBlue Theme 使用 IE6.0/7.0, Firefox 2.0.0.4, Opera 9.21, Safari 2.0.4, Konqueror 3.5.6 浏览器测试。 iBlue Theme 通过 XHTML 1.1 和 CSS 2.1 校验。 CSS 使用 CSSTidy 进行优化和压缩。 更多信息请浏览Nicky的Blog。 相关文章May 21, 2007 -- Update Wordpress, Change themeJune 18, 2009 -- Wordpress主题P2固定链接bug解决方法April 16, [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://www.osxcn.com/wp-content/uploads/2007/06/iblue-theme.gif" alt="iBlue"/><br
/> 经过9个月的精雕细琢之后，<a
href="http://www.osxcn.com">Nicky</a>终于放出了自己的<a
href="http://www.osxcn.com/journal/iblue-theme.html">iBlue主题</a>。效果见本站</p><p>之前我也在用Nicky的主题，不过是这个主题的原始版，这次的iBlue感觉相当不错，极其符合我的风格。推荐一下。</p><p>这个主题的一些信息：</p><ul><li>iBlue Theme 基于 <a
href="http://binarybonsai.com/kubrick/">Default 1.6</a> 主题制作。</li><li>iBlue Theme 适用于 <a
href="http://wordpress.org/download/">WordPress 2.x 版本</a>。</li><li>iBlue Theme 使用 IE6.0/7.0, Firefox 2.0.0.4, Opera 9.21, Safari 2.0.4, Konqueror 3.5.6 浏览器测试。</li><li>iBlue Theme 通过 <a
href="http://validator.w3.org/check/referer">XHTML 1.1 </a>和 <a
href="http://jigsaw.w3.org/css-validator/">CSS 2.1 </a>校验。</li><li>CSS 使用 <a
href="http://www.osxcn.com/csstidy/">CSSTidy</a> 进行优化和压缩。</li></ul><p>更多信息请浏览<a
href="http://www.osxcn.com">Nicky的Blog</a>。</p><h3  class="related_post_title">相关文章</h3><ul
class="related_post"><li>May 21, 2007 -- <a
href="http://simplife.org/2007/05/21/update-wordpress-change-theme.html" title="Update Wordpress, Change theme">Update Wordpress, Change theme</a></li><li>June 18, 2009 -- <a
href="http://simplife.org/2009/06/18/wordpress-p2-permanent-link-bug-fix.html" title="Wordpress主题P2固定链接bug解决方法">Wordpress主题P2固定链接bug解决方法</a></li><li>April 16, 2009 -- <a
href="http://simplife.org/2009/04/16/evidens-design-disease-new-wordpress-theme.html" title="Evidens, Design Disease新WordPress主题作品">Evidens, Design Disease新WordPress主题作品</a></li><li>January 22, 2009 -- <a
href="http://simplife.org/2009/01/22/wordpress-theme-intext-theme.html" title="Wordpress新主题InText">Wordpress新主题InText</a></li><li>October 15, 2008 -- <a
href="http://simplife.org/2008/10/15/new-wordpress-theme-updating-tips.html" title="更换Wordpress主题的Tips">更换Wordpress主题的Tips</a></li></ul>]]></content:encoded> <wfw:commentRss>http://simplife.org/2007/06/04/iblue-theme-for-wordpress.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Update WordPress, Change theme</title><link>http://simplife.org/2007/05/21/update-wordpress-change-theme.html</link> <comments>http://simplife.org/2007/05/21/update-wordpress-change-theme.html#comments</comments> <pubDate>Mon, 21 May 2007 11:19:26 +0000</pubDate> <dc:creator>David.He</dc:creator> <category><![CDATA[杂谈视野]]></category> <category><![CDATA[English]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[主题]]></category> <category><![CDATA[博客]]></category> <category><![CDATA[朋友]]></category> <guid
isPermaLink="false">http://www.6571.net/weblog/?p=381</guid> <description><![CDATA[Days ago, I updated my wordpress to WP2.2 and changed a new theme &#8220;Grid Focus&#8220;. This theme is Derek&#8217;s design, I talked about him in the copyright dispute articles. I like this kind of style very much. There are some of the details left for me to do some changes. However, I was busy these [...]]]></description> <content:encoded><![CDATA[<p>Days ago, I updated my wordpress to <a
href="http://wordpress.org/">WP2.2</a> and changed a new theme &#8220;<a
href="http://5thirtyone.com/grid-focus">Grid Focus</a>&#8220;. This theme is Derek&#8217;s design, I talked about him in <a
href="http://simplife.org/2007/04/10/copyright-goes-to-blogsphere.html">the copyright dispute articles</a>. I like this kind of style very much.</p><p>There are some of the details left for me to do some changes. However, I was busy these days so I put it aside. I&#8217;ll make it up ASAP.</p><p>On last Saturday, we had a gethering. Friends from 6571.net, mostly my schoolmates, met each other. We enjoyed ourselves very well in the latter activities. It&#8217;s 12 o&#8217;clock when I climbed to my room. For more details you may visit <a
href="http://www.6571.net">6571.net</a>.</p><p>I&#8217;ve have to stop here for my supper <img
src='http://simplife.org/wp-includes/images/smilies/icon_rolleyes.gif' alt=':roll:' class='wp-smiley' /> .</p><p>Update: I find &#8220;Grid Focus&#8221; uneasy to use, so I take Nicky&#8217;s theme again.</p><h3  class="related_post_title">相关文章</h3><ul
class="related_post"><li>June 4, 2007 -- <a
href="http://simplife.org/2007/06/04/iblue-theme-for-wordpress.html" title="Nicky做的新主题iBlue">Nicky做的新主题iBlue</a></li><li>June 18, 2009 -- <a
href="http://simplife.org/2009/06/18/wordpress-p2-permanent-link-bug-fix.html" title="Wordpress主题P2固定链接bug解决方法">Wordpress主题P2固定链接bug解决方法</a></li><li>April 16, 2009 -- <a
href="http://simplife.org/2009/04/16/evidens-design-disease-new-wordpress-theme.html" title="Evidens, Design Disease新WordPress主题作品">Evidens, Design Disease新WordPress主题作品</a></li><li>January 22, 2009 -- <a
href="http://simplife.org/2009/01/22/wordpress-theme-intext-theme.html" title="Wordpress新主题InText">Wordpress新主题InText</a></li><li>October 15, 2008 -- <a
href="http://simplife.org/2008/10/15/new-wordpress-theme-updating-tips.html" title="更换Wordpress主题的Tips">更换Wordpress主题的Tips</a></li></ul>]]></content:encoded> <wfw:commentRss>http://simplife.org/2007/05/21/update-wordpress-change-theme.html/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>A New Theme Applied</title><link>http://simplife.org/2007/02/03/a-new-theme-applied.html</link> <comments>http://simplife.org/2007/02/03/a-new-theme-applied.html#comments</comments> <pubDate>Sat, 03 Feb 2007 02:08:58 +0000</pubDate> <dc:creator>David.He</dc:creator> <category><![CDATA[杂谈视野]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[主题]]></category> <guid
isPermaLink="false">http://www.6571.net/weblog/?p=241</guid> <description><![CDATA[昨天换了现在正在使用的这个新主题Vertigo 2.0,我非常喜欢这种风格的主题，但是颜色，侧边栏以及footer的一些items不是特别喜欢；还有一个缺点就是这个主题的CSS没有通过CSS2.0的校验。昨天晚上根据自己的喜好对主题先做了少许的修改： 重新制作了header image和logo； 修改了左侧边栏的CSS，主要是calendar&#38;ul相关的，避免了使用一些自己定义widgets时出现的显示问题； 修改了footer的CSS，同上； 添加了widgets，并把原有的一些items重新排列； 其他一些改动。 颜色和CSS标准校验等放假有空的时候再看一下，对CSS不算很熟，慢慢学习中。 相关文章June 18, 2009 -- Wordpress主题P2固定链接bug解决方法April 16, 2009 -- Evidens, Design Disease新WordPress主题作品January 22, 2009 -- Wordpress新主题InTextOctober 15, 2008 -- 更换Wordpress主题的TipsJune 4, 2007 -- Nicky做的新主题iBlue]]></description> <content:encoded><![CDATA[<p>昨天换了现在正在使用的这个新主题<a
href="http://www.briangardner.com/themes/vertigo-wordpress-theme.htm">Vertigo 2.0</a>,我非常喜欢这种风格的主题，但是颜色，侧边栏以及footer的一些items不是特别喜欢；还有一个缺点就是这个主题的CSS没有通过CSS2.0的校验。昨天晚上根据自己的喜好对主题先做了少许的修改：</p><ul><li>重新制作了header image和logo；</li><li>修改了左侧边栏的CSS，主要是calendar&amp;ul相关的，避免了使用一些自己定义widgets时出现的显示问题；</li><li>修改了footer的CSS，同上；</li><li>添加了widgets，并把原有的一些items重新排列；</li><li>其他一些改动。</li></ul><p>颜色和CSS标准校验等放假有空的时候再看一下，对CSS不算很熟，慢慢学习中。</p><h3  class="related_post_title">相关文章</h3><ul
class="related_post"><li>June 18, 2009 -- <a
href="http://simplife.org/2009/06/18/wordpress-p2-permanent-link-bug-fix.html" title="Wordpress主题P2固定链接bug解决方法">Wordpress主题P2固定链接bug解决方法</a></li><li>April 16, 2009 -- <a
href="http://simplife.org/2009/04/16/evidens-design-disease-new-wordpress-theme.html" title="Evidens, Design Disease新WordPress主题作品">Evidens, Design Disease新WordPress主题作品</a></li><li>January 22, 2009 -- <a
href="http://simplife.org/2009/01/22/wordpress-theme-intext-theme.html" title="Wordpress新主题InText">Wordpress新主题InText</a></li><li>October 15, 2008 -- <a
href="http://simplife.org/2008/10/15/new-wordpress-theme-updating-tips.html" title="更换Wordpress主题的Tips">更换Wordpress主题的Tips</a></li><li>June 4, 2007 -- <a
href="http://simplife.org/2007/06/04/iblue-theme-for-wordpress.html" title="Nicky做的新主题iBlue">Nicky做的新主题iBlue</a></li></ul>]]></content:encoded> <wfw:commentRss>http://simplife.org/2007/02/03/a-new-theme-applied.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
