<?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.jianbitou.com/post/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jianbitou.com</link>
	<description>说人是非者，本是是非人</description>
	<lastBuildDate>Sun, 18 Jul 2010 14:59:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>制作wordpress主题之教训与经验</title>
		<link>http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html</link>
		<comments>http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html#comments</comments>
		<pubDate>Fri, 13 Mar 2009 13:11:16 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[互联网里]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[分享]]></category>

		<guid isPermaLink="false">http://www.jianbitou.com/?p=548</guid>
		<description><![CDATA[在用wordpress打造门户网站的最后一段话，说了这篇文章说要&#8220;写关于做这个wordpress主题遇到的问题及经验&#8221;。
那么废话少讲，直奔高潮吧。
1、wordpress主题从何写起？
一个主题包括多个PHP文件，剩下可以有一到两个CSS，还有image文件夹，这是最基本的。
当然如果用到JS特效的，当然最好有一个JS文件夹了。
重点是这个CSS文件，但在写CSS文件之前，先决定好布局，所以index.php，single.php，page.php 之类的要先搞好。怎么搞得舒服，看技巧了。其实说到底，先想好一些class及ID，至于什么时候选择class，什么时候选择ID，没有什么大问题的，如果想与人分享，类名最好用比较科学的单词吧。
在修改index.php，single.php，page.php等文件时，懂得使用一些wordpress内置函数是很有必要的，想知道wordpress内置函数有哪些？可以到wordpress官网下载：WordPress Codex.pdf 及 WordPress Codex2.pdf （不加链接了）。
事实上，有很多现成的wordpress主题，有些主题的结构或者跟你想要的基本一样，那样就好办了。根据这个主题修改就行了，事半功倍。
当然了，要想与众不同，还是自己构思会比较好，虽然比较烦。
2、选择哪一种字体？
大家用过wordpress都知道一般的主题大多都是 &#34;Times New Roman&#34;, Times,serif,arial,Sans-serif,helvetica 什么的，很明显这是外国语擅长用的。那么中文用什么比较好呢？实际上用上面给出的默认字体没什么问题。
但是，如果你想拉风，你可能会想起选择&#8220;微软雅黑&#8221;，是很拉风。但万一别人电脑没有这种字体呢？没问题，这样定义吧：
body {
&#160;&#160;&#160; font: 13px &#34;微软雅黑&#34;,&#34;宋体&#34;,arial,Sans-serif,helvetica;
}
大家没有&#8220;微软雅黑&#8221;，但一定会有&#8220;宋体&#8221;是吧。
但是，你可能遇到这样的问题：


&#160;图有点小了，提示下：上面一张是&#34;微软雅黑&#34;，下面一张是&#34;宋体&#34;，同样的定义，很明显&#34;微软雅黑&#34;字体的字都下沉了不少。看出来了？
为什么呢？因为&#34;微软雅黑&#34;瘦小一点，相同的内补白使&#34;微软雅黑&#34;向下偏移了。
有没有解决办法？我不知道。更有可能是我自己CSS定义的问题。
不过，直接用宋体就解决所有问题了。中国人就应该用&#8220;宋体&#8221;，是吧。
3、选择哪种格式的图片？
事实证明了，纯CSS配色而没有图片的wordpress主题是很难美观的，为打造门户网站而写的，肯定要比较好看才行。
图片格式大家都知道png质量是最好的，但质量好另一方面就是size大。size是一个很严重的问题，特别到了有些月份流量比较大的时候，哼哼&#8230;&#8230;
所以jpg或者是gif是不错的选择，质量会差点，都还是可以拿出来见人的。
4、本地测试毕竟是本地测试
用图说明：


第一张图是本地测试的效果，第二张是放在服务器里的显示结果。发现了吧，第二张图片说明了我定义的那个类没有CSS成功，那第一张图为什么就显示正常呢？
我找了很久，终于在single.php 发现：
&#60;div class=&#34;postMeta&#34;&#62;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;span class=&#34;homelink&#34;&#62;&#60;a href=&#34;http://www.ipangpang.com&#34; target=&#34;_blank&#34;&#62;爱胖胖&#60;/a&#62;&#60;/span&#62;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;span class=&#34;date&#34;&#62; &#124; &#60;?php the_category(&#8216;, &#8216;) ?&#62;&#124; &#60;?php the_time(&#8216;M jS, Y&#8217;) ?&#62;&#160; &#124; &#60;?php if(function_exists(&#8216;the_views&#8217;)) {&#160;&#160;&#160;&#160;&#160; the_views(); } ?&#62;&#60;?php edit_post_link(&#8216;编辑&#8217;, &#8216; // &#8216;, &#8216; // &#8216;); ?&#62;&#60;/span&#62;
&#60;/div&#62;
而在CSS里：
.postmeta {
color: #999999;
margin-bottom: 10px;
text-align: center;
}
没错，meta，一个大写，一个小写。事实上，大小写应该没有什么问题才对，但是，我是错的。大小写问题教训了我很多次。
5、资源推荐
45个Wordpress趣味主题
32个高质量wordpress主题免费下载
适合女性用的wordpress主题下载
6、要洗白白去，知道什么叫洗白白不？
所以，到此为止。
相关东东专为女生打造的wordpress主题:pangpang-theme这13个Wordpress插件，你安装了吗？32个高质量wordpress主题免费下载分享：45个Wordpress趣味主题16个优秀网站教你网站设计本地测试：Zblog转Wordpress启动“我的大学”征文活动从8900看黑莓45张高质量精美3D壁纸下载1M在线看720P？——揭开暴风影音的秘密
© Sonny for [...]]]></description>
			<content:encoded><![CDATA[<p>在<a href="http://www.jianbitou.com/post/use-wordpress-to-build-a-portal-website.html">用wordpress打造门户网站</a>的最后一段话，说了这篇文章说要&ldquo;写关于做这个wordpress主题遇到的问题及经验&rdquo;。</p>
<p>那么废话少讲，直奔高潮吧。</p>
<h3>1、wordpress主题从何写起？</h3>
<p>一个主题包括多个PHP文件，剩下可以有一到两个CSS，还有image文件夹，这是最基本的。</p>
<p>当然如果用到JS特效的，当然最好有一个JS文件夹了。</p>
<p>重点是这个CSS文件，但在写CSS文件之前，先决定好布局，所以index.php，single.php，page.php 之类的要先搞好。怎么搞得舒服，看技巧了。其实说到底，先想好一些class及ID，至于什么时候选择class，什么时候选择ID，没有什么大问题的，如果想与人分享，类名最好用比较科学的单词吧。</p>
<p>在修改index.php，single.php，page.php等文件时，懂得使用一些wordpress内置函数是很有必要的，想知道wordpress内置函数有哪些？可以到wordpress官网下载：WordPress Codex.pdf 及 WordPress Codex2.pdf （不加链接了）。</p>
<p>事实上，有很多现成的wordpress主题，有些主题的结构或者跟你想要的基本一样，那样就好办了。根据这个主题修改就行了，事半功倍。</p>
<p>当然了，要想与众不同，还是自己构思会比较好，虽然比较烦。</p>
<h3>2、选择哪一种字体？</h3>
<p>大家用过wordpress都知道一般的主题大多都是 &quot;Times New Roman&quot;, Times,serif,arial,Sans-serif,helvetica 什么的，很明显这是外国语擅长用的。那么中文用什么比较好呢？实际上用上面给出的默认字体没什么问题。</p>
<p>但是，如果你想拉风，你可能会想起选择&ldquo;微软雅黑&rdquo;，是很拉风。但万一别人电脑没有这种字体呢？没问题，这样定义吧：</p>
<p>body {<br />
&nbsp;&nbsp;&nbsp; font: 13px &quot;微软雅黑&quot;,&quot;宋体&quot;,arial,Sans-serif,helvetica;<br />
}</p>
<p>大家没有&ldquo;微软雅黑&rdquo;，但一定会有&ldquo;宋体&rdquo;是吧。</p>
<p>但是，你可能遇到这样的问题：</p>
<p><a href="http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html"><img alt="制作wordprss主题之教训与经验" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2F_Npc-jGyPTWo%2FSbpJ1hCq3qI%2FAAAAAAAADT8%2FP_7VJttV3RE%2Fs800%2F1.png" /></a></p>
<p><a href="http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html"><img alt="制作wordprss主题之教训与经验" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2F_Npc-jGyPTWo%2FSbpRsaeGNoI%2FAAAAAAAADUk%2FIalGkupl_fo%2Fs800%2F4.png" /></a></p>
<p>&nbsp;图有点小了，提示下：上面一张是&quot;微软雅黑&quot;，下面一张是&quot;宋体&quot;，同样的定义，很明显&quot;微软雅黑&quot;字体的字都下沉了不少。看出来了？</p>
<p>为什么呢？因为&quot;微软雅黑&quot;瘦小一点，相同的内补白使&quot;微软雅黑&quot;向下偏移了。</p>
<p>有没有解决办法？我不知道。更有可能是我自己CSS定义的问题。</p>
<p>不过，直接用宋体就解决所有问题了。中国人就应该用&ldquo;宋体&rdquo;，是吧。</p>
<h3>3、选择哪种格式的图片？</h3>
<p>事实证明了，纯CSS配色而没有图片的wordpress主题是很难美观的，为打造门户网站而写的，肯定要比较好看才行。</p>
<p>图片格式大家都知道png质量是最好的，但质量好另一方面就是size大。size是一个很严重的问题，特别到了有些月份流量比较大的时候，哼哼&hellip;&hellip;</p>
<p>所以jpg或者是gif是不错的选择，质量会差点，都还是可以拿出来见人的。</p>
<h3>4、本地测试毕竟是本地测试</h3>
<p>用图说明：</p>
<p><a href="http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html"><img alt="制作wordprss主题之教训与经验" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2F_Npc-jGyPTWo%2FSbpJ1ugKvhI%2FAAAAAAAADUE%2FWtL2JJqFOKQ%2Fs800%2F2.png" /></a></p>
<p><a href="http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html"><img alt="制作wordprss主题之教训与经验" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2F_Npc-jGyPTWo%2FSbpJ1xKN2gI%2FAAAAAAAADUM%2FdumKYgCSHf8%2Fs800%2F3.png" /></a></p>
<p>第一张图是本地测试的效果，第二张是放在服务器里的显示结果。发现了吧，第二张图片说明了我定义的那个类没有CSS成功，那第一张图为什么就显示正常呢？</p>
<p>我找了很久，终于在single.php 发现：</p>
<p>&lt;div class=&quot;postMeta&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: rgb(192, 192, 192);">&lt;span class=&quot;homelink&quot;&gt;&lt;a href=&quot;http://www.ipangpang.com&quot; target=&quot;_blank&quot;&gt;爱胖胖&lt;/a&gt;&lt;/span&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;span class=&quot;date&quot;&gt; | &lt;?php the_category(&#8216;, &#8216;) ?&gt;| &lt;?php the_time(&#8216;M jS, Y&#8217;) ?&gt;&nbsp; | &lt;?php if(function_exists(&#8216;the_views&#8217;)) {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the_views(); } ?&gt;&lt;?php edit_post_link(&#8216;编辑&#8217;, &#8216; // &#8216;, &#8216; // &#8216;); ?&gt;&lt;/span&gt;</span><br />
&lt;/div&gt;</p>
<p>而在CSS里：</p>
<p>.postmeta {</p>
<p>color: #999999;</p>
<p>margin-bottom: 10px;</p>
<p>text-align: center;</p>
<p>}</p>
<p>没错，meta，一个大写，一个小写。事实上，大小写应该没有什么问题才对，但是，我是错的。大小写问题教训了我很多次。</p>
<h3>5、资源推荐</h3>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html">45个Wordpress趣味主题</a></p>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html">32个高质量wordpress主题免费下载</a></p>
<p><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html">适合女性用的wordpress主题下载</a></p>
<h3>6、要洗白白去，知道什么叫洗白白不？</h3>
<p>所以，到此为止。</p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html" title="专为女生打造的wordpress主题:pangpang-theme">专为女生打造的wordpress主题:pangpang-theme</a></li><li><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html" title="这13个Wordpress插件，你安装了吗？">这13个Wordpress插件，你安装了吗？</a></li><li><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html" title="32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a></li><li><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html" title="分享：45个Wordpress趣味主题">分享：45个Wordpress趣味主题</a></li><li><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html" title="16个优秀网站教你网站设计">16个优秀网站教你网站设计</a></li><li><a href="http://www.jianbitou.com/post/zblog_to_wordpress.html" title="本地测试：Zblog转Wordpress">本地测试：Zblog转Wordpress</a></li><li><a href="http://www.jianbitou.com/post/my-university.html" title="启动“我的大学”征文活动">启动“我的大学”征文活动</a></li><li><a href="http://www.jianbitou.com/post/blackberry-8900.html" title="从8900看黑莓">从8900看黑莓</a></li><li><a href="http://www.jianbitou.com/post/45-high-quality-and-inspiring-3d-desktop-wallpapers.html" title="45张高质量精美3D壁纸下载">45张高质量精美3D壁纸下载</a></li><li><a href="http://www.jianbitou.com/post/1m-runs-720p.html" title="1M在线看720P？——揭开暴风影音的秘密">1M在线看720P？——揭开暴风影音的秘密</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2009. |
<a href="http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html">原文</a> |
<a href="http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html&title=制作wordpress主题之教训与经验">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/%e5%88%86%e4%ba%ab" rel="tag">分享</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>用wordpress打造门户网站</title>
		<link>http://www.jianbitou.com/post/use-wordpress-to-build-a-portal-website.html</link>
		<comments>http://www.jianbitou.com/post/use-wordpress-to-build-a-portal-website.html#comments</comments>
		<pubDate>Tue, 10 Mar 2009 10:10:28 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[互联网里]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[博客]]></category>

		<guid isPermaLink="false">http://www.jianbitou.com/?p=536</guid>
		<description><![CDATA[用了差不多两个星期，做了一个主题。
记得上一次做了一个适合女性的wordpress主题，我命名它了PangPang theme，而这一次，我做了第二代，所以叫 PangPang theme 2。
而这个wordpress主题，就是为打造门户网站而写成的，针对的群体是女性，所以主色选择了红色。
下面就是它的主页面：

胖胖的主页面
早些时间就注册了ipangpang.com这个域名，说是为女朋友做一个适合女性用的门类型小网站，后来差点放弃了，差点将它弄成垃圾网站。然后又觉得做人要有点信用才行，所以还是努力下来认真写了作图，写代码，写出了这个主题。
终于还算完成了，但是人太笨了，不太巧用工具，不会用firebug，所以浪费了很多精力。可以做的就是打开UltraEdit-32，一个单词一个单词地写CSS。
不管怎么说，我还是觉得做得比较成功的，虽然离精致还有一段距离。不过，倒真有门户网站的风格，下面就是单篇文章页面：

胖胖的single页面
而做这个网站是为了什么？
可能你觉得是赚钱。其实我也这样想过，但&#8220;想&#8221;是很容易，实现起来是很难的。
其实一个最简单的目的就是，有时候我看到很多有意思的文章，我曾经一度想找个地方转载，但更多时候只能放在书签上。现在有地方可以转载了，虽然这跟抄袭没有很大的区别，但是由于功利性不是很强，所以还是对得住看这个网站的人的。
而这个女性型的小型门户网站，当然是由一个女人来更新比较好。当然现在是有这么一个人，我女朋友每天至少会更新一篇，而我也会帮忙更新，分享一些搞笑的视频，或之类的有意思东西。如果大家发现什么好玩的或者有用的东西，可以发邮件通知我：sonny@jianbitou.com。
这个wordpress主题不打算share
不拿出来分享是有原因的：
1、因为这是度身订做的，没有一般性，所以共享出来大家也不一定适用。
2、这是根据门户网站写的，有些想利用wordpress做垃圾网站的人或者会喜欢这类型的主题，我不鼓励这样。
3、做一个主题不难，不需要什么技术性的知识。大家应该自己尝试写一个，只有自己写出来的主题才是最适合自己的。
说到这里，再说一下题外话。
写一个wordpress主题需要什么？
1、动力与耐心。不断的动力可以保证认真做好一个wordpress主题，又因为我不是高手，所以我觉得耐心也是很重要的。
2、看懂CSS，会调用简单的wordpress内置函数，会基本的photoshop作图。
3、有进行本地测试的条件，例如：本地运行wordpress，这样可以节省很多时间。
4、有一个好用的文本编辑器，例如 UltraEdit-32、EditPlus。
我是一个菜鸟，我不想装高手。但是事实证明，做好一个wordprss主题，不需要多高手。
这个网站叫胖胖，你称为爱胖胖也行，其实老实说，这个主题只是一般好看，需要改进的东西还有太多。但现在有个问题需要大家帮忙的，就是主页面的友情链接部分太空了，所以请各位朋友有谁想支持一下或者想这个主题更好看，请移步到胖胖来交换一下链接吧，PR=3。
下一篇文章，我会写关于做这个wordpress主题遇到的问题及经验。感谢看完这篇文章，欢迎指正。
相关东东专为女生打造的wordpress主题:pangpang-theme就这样，一年了这13个Wordpress插件，你安装了吗？32个高质量wordpress主题免费下载分享：45个Wordpress趣味主题16个优秀网站教你网站设计“尖笔头”会长成怎么样？启动“我的大学”征文活动微博客现象I&#8217;m back
© Sonny for 尖笔头, 2009. &#124;
原文 &#124;
添加评论 &#124;
添加至
del.icio.us

Post tags: wordpress, 博客做一下尖笔头读者调查问卷咯&#124;Twitter&#124;新浪微博&#124;“我的大学”征文活动
]]></description>
			<content:encoded><![CDATA[<p>用了差不多两个星期，做了一个主题。</p>
<p>记得上一次做了一个<a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html">适合女性的wordpress主题</a>，我命名它了PangPang theme，而这一次，我做了第二代，所以叫 PangPang theme 2。</p>
<p>而这个wordpress主题，就是为打造门户网站而写成的，针对的群体是女性，所以主色选择了红色。</p>
<p>下面就是它的主页面：</p>
<p style="text-align: center;"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2F_Npc-jGyPTWo%2FSbYuh9EZQ_I%2FAAAAAAAADTY%2F1ui-fTiHHg4%2Fs800%2Fipangpang1.png" alt="" /></p>
<p style="text-align: center;"><a href="http://www.ipangpang.com">胖胖</a>的主页面</p>
<p style="text-align: left;">早些时间就注册了<a href="http://www.ipangpang.com">ipangpang.com</a>这个域名，说是为女朋友做一个适合女性用的门类型小网站，后来差点放弃了，差点将它弄成垃圾网站。然后又觉得做人要有点信用才行，所以还是努力下来认真写了作图，写代码，写出了这个主题。</p>
<p style="text-align: left;">终于还算完成了，但是人太笨了，不太巧用工具，不会用firebug，所以浪费了很多精力。可以做的就是打开UltraEdit-32，一个单词一个单词地写CSS。</p>
<p style="text-align: left;">不管怎么说，我还是觉得做得比较成功的，虽然离精致还有一段距离。不过，倒真有门户网站的风格，下面就是单篇文章页面：</p>
<p style="text-align: center;"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2F_Npc-jGyPTWo%2FSbYx14P-YoI%2FAAAAAAAADTo%2FyNtzpuhw-tE%2Fs800%2Fipangpang2.png" alt="" /></p>
<p style="text-align: center;"><a href="http://www.ipangpang.com">胖胖</a>的single页面</p>
<h3>而做这个网站是为了什么？</h3>
<p style="text-align: left;">可能你觉得是赚钱。其实我也这样想过，但&ldquo;想&rdquo;是很容易，实现起来是很难的。</p>
<p style="text-align: left;">其实一个最简单的目的就是，有时候我看到很多有意思的文章，我曾经一度想找个地方转载，但更多时候只能放在书签上。现在有地方可以转载了，虽然这跟抄袭没有很大的区别，但是由于功利性不是很强，所以还是对得住看这个网站的人的。</p>
<p style="text-align: left;">而这个女性型的小型门户网站，当然是由一个女人来更新比较好。当然现在是有这么一个人，我女朋友每天至少会更新一篇，而我也会帮忙更新，分享一些搞笑的视频，或之类的有意思东西。如果大家发现什么好玩的或者有用的东西，可以发邮件通知我：sonny@jianbitou.com。</p>
<h3>这个wordpress主题不打算share</h3>
<p style="text-align: left;">不拿出来分享是有原因的：</p>
<p style="text-align: left; margin-left: 40px;">1、因为这是度身订做的，没有一般性，所以共享出来大家也不一定适用。</p>
<p style="text-align: left; margin-left: 40px;">2、这是根据门户网站写的，有些想利用wordpress做垃圾网站的人或者会喜欢这类型的主题，我不鼓励这样。</p>
<p style="text-align: left; margin-left: 40px;">3、做一个主题不难，不需要什么技术性的知识。大家应该自己尝试写一个，只有自己写出来的主题才是最适合自己的。</p>
<p style="text-align: left;">说到这里，再说一下题外话。</p>
<h3>写一个wordpress主题需要什么？</h3>
<p style="margin-left: 40px;">1、动力与耐心。不断的动力可以保证认真做好一个wordpress主题，又因为我不是高手，所以我觉得耐心也是很重要的。</p>
<p style="margin-left: 40px;">2、看懂CSS，会调用简单的wordpress内置函数，会基本的photoshop作图。</p>
<p style="margin-left: 40px;">3、有进行本地测试的条件，例如：<a href="http://www.jianbitou.com/post/zblog_to_wordpress.html">本地运行wordpress</a>，这样可以节省很多时间。</p>
<p style="margin-left: 40px;">4、有一个好用的文本编辑器，例如 UltraEdit-32、EditPlus。</p>
<p>我是一个菜鸟，我不想装高手。但是事实证明，做好一个wordprss主题，不需要多高手。</p>
<p>这个网站叫<a href="http://www.ipangpang.com">胖胖</a>，你称为<a href="http://www.ipangpang.com">爱胖胖</a>也行，其实老实说，这个主题只是一般好看，需要改进的东西还有太多。但现在有个问题需要大家帮忙的，就是主页面的友情链接部分太空了，所以请各位朋友有谁想支持一下或者想这个主题更好看，请移步到<a href="http://www.ipangpang.com">胖胖</a>来交换一下链接吧，PR=3。</p>
<p>下一篇文章，我会写关于做这个wordpress主题遇到的问题及经验。感谢看完这篇文章，欢迎指正。</p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html" title="专为女生打造的wordpress主题:pangpang-theme">专为女生打造的wordpress主题:pangpang-theme</a></li><li><a href="http://www.jianbitou.com/post/one-year-old.html" title="就这样，一年了">就这样，一年了</a></li><li><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html" title="这13个Wordpress插件，你安装了吗？">这13个Wordpress插件，你安装了吗？</a></li><li><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html" title="32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a></li><li><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html" title="分享：45个Wordpress趣味主题">分享：45个Wordpress趣味主题</a></li><li><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html" title="16个优秀网站教你网站设计">16个优秀网站教你网站设计</a></li><li><a href="http://www.jianbitou.com/post/86.html" title="“尖笔头”会长成怎么样？">“尖笔头”会长成怎么样？</a></li><li><a href="http://www.jianbitou.com/post/my-university.html" title="启动“我的大学”征文活动">启动“我的大学”征文活动</a></li><li><a href="http://www.jianbitou.com/post/microblog.html" title="微博客现象">微博客现象</a></li><li><a href="http://www.jianbitou.com/post/i-am-back.html" title="I&#8217;m back">I&#8217;m back</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2009. |
<a href="http://www.jianbitou.com/post/use-wordpress-to-build-a-portal-website.html">原文</a> |
<a href="http://www.jianbitou.com/post/use-wordpress-to-build-a-portal-website.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/use-wordpress-to-build-a-portal-website.html&title=用wordpress打造门户网站">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/%e5%8d%9a%e5%ae%a2" rel="tag">博客</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/use-wordpress-to-build-a-portal-website.html/feed</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>专为女生打造的wordpress主题:pangpang-theme</title>
		<link>http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html</link>
		<comments>http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html#comments</comments>
		<pubDate>Wed, 03 Dec 2008 11:48:14 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[资源共享]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[分享]]></category>
		<category><![CDATA[博客]]></category>

		<guid isPermaLink="false">http://www.jianbitou.com/?p=253</guid>
		<description><![CDATA[最近不是很频繁更新博客。其实也没有别的事忙，一般都是打开电脑看看电影，上课睡睡觉就过去了。
大概一个多月前吧，我开始免费为人修改一个wordpress主题，后来别人也采用了，我觉得自己没什么实力，修改得不好，本来也不想放出来丢人的，但又想到毕竟自己还是花了不少时间，还是放出来吧。
所以今天就发放出来了。这是一个专为女生打造的wordpress主题，叫pangpang-theme是因为我经常叫我女朋友为胖胖。
首先：
原来是这样的（真正启用的时候，没有这么好看的）：

然后：
现在是这样的了：

在分享32个免费的wordpress主题的时候，有介绍到Infinity: A Free Wordpress theme，这个就是pangpang-theme的前身。pangpang-theme已经在线上应用了一个多月，在firefox，ie6，ie7显示有所不同，但都是属于正常显示的。
下面：
介绍一下pangpang-theme的特点。
1、三栏。结构十分简单，在CSS中将两侧栏分开定义。
2、在CSS添加了微软雅黑字体。汉化程度很好，因为是我组织语言的。
3、针对IE6不能很好显示出透明感，相应地对IE6隐藏了主体透明效果。
4、首页显示的是缩略图（thumbnail）。如下图，撰写文章的时候，在&#8220;添加新字段&#8221;中选择thumbnail，插入图片地址即可。因为我用的是picasa，而它的缩略图宽是144PX，所以我定义了每张缩略图的宽为144px，如需要，可在CSS里就可自行修改。

如何应用？
1、解压pangpang-theme.rar。
2、上传到wp-content/themes/下。
3、在管理后台启用pangpang-theme主题。
哪里有下载？
这里有下载。
说明几点：
1、这个主题有点像QQ空间，我估计没多少人用。正常。
2、如果你真的要用了，别把页脚的那个链接删了，给人一点尊重。
3、我对这个主题不是很满意的，背景图片颜色渐变得不完美，背景颜色太鲜艳。其实白底黑字才是人们百看不厌的感觉。
4、有点累。推荐：软，很软，非常软。
5、拜拜。
相关东东这13个Wordpress插件，你安装了吗？32个高质量wordpress主题免费下载分享：45个Wordpress趣味主题16个优秀网站教你网站设计启动“我的大学”征文活动制作wordpress主题之教训与经验用wordpress打造门户网站就这样，一年了20个优秀网站助你征服CSS本地测试：Zblog转Wordpress
© Sonny for 尖笔头, 2008. &#124;
原文 &#124;
添加评论 &#124;
添加至
del.icio.us

Post tags: wordpress, 分享, 博客做一下尖笔头读者调查问卷咯&#124;Twitter&#124;新浪微博&#124;“我的大学”征文活动
]]></description>
			<content:encoded><![CDATA[<p>最近不是很频繁更新博客。其实也没有别的事忙，一般都是打开电脑看看电影，上课睡睡觉就过去了。</p>
<p>大概一个多月前吧，我开始免费为人修改一个wordpress主题，后来别人也采用了，我觉得自己没什么实力，修改得不好，本来也不想放出来丢人的，但又想到毕竟自己还是花了不少时间，还是放出来吧。</p>
<p>所以今天就发放出来了。这是一个专为女生打造的wordpress主题，叫pangpang-theme是因为我经常叫我女朋友为胖胖。</p>
<p><strong>首先</strong>：</p>
<p style="margin-left: 40px;">原来是这样的（真正启用的时候，没有这么好看的）：</p>
<p><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrH_b4vWI%2FAAAAAAAAB7M%2FYNHogmmF0GQ%2Fs800%2F29.jpg" class="txttoimage_image" style="max-width: 180.18px ! important; max-height: 200px ! important; cursor: pointer ! important;" alt="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrH_b4vWI%2FAAAAAAAAB7M%2FYNHogmmF0GQ%2Fs800%2F29.jpg" title="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrH_b4vWI%2FAAAAAAAAB7M%2FYNHogmmF0GQ%2Fs800%2F29.jpg" /></a></p>
<p><strong>然后</strong>：</p>
<p style="margin-left: 40px;">现在是这样的了：</p>
<p><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2F_Npc-jGyPTWo%2FSTZlCPm3HRI%2FAAAAAAAAC1I%2FXzTYnWndfGY%2Fs800%2Fpangpang-theme.jpg" alt="" /></a></p>
<p>在分享32个<a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html">免费的wordpress主题</a>的时候，有介绍到<a href="http://www.smashingmagazine.com/2008/08/08/infinity-a-free-wordpress-theme/">Infinity: A Free Wordpress theme</a>，这个就是pangpang-theme的前身。pangpang-theme已经在线上应用了一个多月，在firefox，ie6，ie7显示有所不同，但都是属于正常显示的。</p>
<p><strong>下面</strong>：</p>
<p>介绍一下pangpang-theme的特点。</p>
<p style="margin-left: 40px;">1、三栏。结构十分简单，在CSS中将两侧栏分开定义。</p>
<p style="margin-left: 40px;">2、在CSS添加了微软雅黑字体。汉化程度很好，因为是我组织语言的。</p>
<p style="margin-left: 40px;">3、针对IE6不能很好显示出透明感，相应地对IE6隐藏了主体透明效果。</p>
<p style="margin-left: 40px;">4、首页显示的是缩略图（thumbnail）。如下图，撰写文章的时候，在&ldquo;添加新字段&rdquo;中选择thumbnail，插入图片地址即可。因为我用的是picasa，而它的缩略图宽是144PX，所以我定义了每张缩略图的宽为144px，如需要，可在CSS里就可自行修改。</p>
<p><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2F_Npc-jGyPTWo%2FSTZlCG2kOVI%2FAAAAAAAAC1Q%2FukzkGUmu2Vo%2Fs400%2Fcustom.png" alt="" /></a></p>
<p><strong>如何应用？</strong></p>
<p style="margin-left: 40px;">1、解压pangpang-theme.rar。</p>
<p style="margin-left: 40px;">2、上传到wp-content/themes/下。</p>
<p style="margin-left: 40px;">3、在管理后台启用pangpang-theme主题。</p>
<p><strong>哪里有下载？</strong></p>
<p style="margin-left: 40px;"><a href="http://code.google.com/p/sonnyandwordpress/downloads/list">这里有下载</a>。</p>
<p><strong>说明几点：</strong></p>
<p style="margin-left: 40px;">1、这个主题有点像QQ空间，我估计没多少人用。正常。</p>
<p style="margin-left: 40px;">2、如果你真的要用了，别把页脚的那个链接删了，给人一点尊重。</p>
<p style="margin-left: 40px;">3、我对这个主题不是很满意的，背景图片颜色渐变得不完美，背景颜色太鲜艳。其实白底黑字才是人们百看不厌的感觉。</p>
<p style="margin-left: 40px;">4、有点累。推荐：<a href="http://www.jianbitou.com/post/verytired.html">软，很软，非常软</a>。</p>
<p style="margin-left: 40px;">5、拜拜。</p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html" title="这13个Wordpress插件，你安装了吗？">这13个Wordpress插件，你安装了吗？</a></li><li><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html" title="32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a></li><li><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html" title="分享：45个Wordpress趣味主题">分享：45个Wordpress趣味主题</a></li><li><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html" title="16个优秀网站教你网站设计">16个优秀网站教你网站设计</a></li><li><a href="http://www.jianbitou.com/post/my-university.html" title="启动“我的大学”征文活动">启动“我的大学”征文活动</a></li><li><a href="http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html" title="制作wordpress主题之教训与经验">制作wordpress主题之教训与经验</a></li><li><a href="http://www.jianbitou.com/post/use-wordpress-to-build-a-portal-website.html" title="用wordpress打造门户网站">用wordpress打造门户网站</a></li><li><a href="http://www.jianbitou.com/post/one-year-old.html" title="就这样，一年了">就这样，一年了</a></li><li><a href="http://www.jianbitou.com/post/20_websites-learn-master-css.html" title="20个优秀网站助你征服CSS">20个优秀网站助你征服CSS</a></li><li><a href="http://www.jianbitou.com/post/zblog_to_wordpress.html" title="本地测试：Zblog转Wordpress">本地测试：Zblog转Wordpress</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2008. |
<a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html">原文</a> |
<a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html&title=专为女生打造的wordpress主题:pangpang-theme">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/%e5%88%86%e4%ba%ab" rel="tag">分享</a>, <a href="http://www.jianbitou.com/post/tag/%e5%8d%9a%e5%ae%a2" rel="tag">博客</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>就这样，一年了</title>
		<link>http://www.jianbitou.com/post/one-year-old.html</link>
		<comments>http://www.jianbitou.com/post/one-year-old.html#comments</comments>
		<pubDate>Fri, 14 Nov 2008 09:05:24 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[生活笔记]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[思考]]></category>

		<guid isPermaLink="false">http://www.jianbitou.com/post/one-year-old.html</guid>
		<description><![CDATA[考完试了，有时间更新博客了。
没错，我还是一个学生，比各位都嫩。我长得有多丑？哼哼，告诉你，这是帅哥，那是以前的照片了，而坏消息是，现在更帅了。
前几天跟穷人说，我要早他一步成为名博，其实那是说说而已，我没那么远大的理想，写博客就是为了有点追求，但不是追求名不名的，想名很容易的，把可能吧博主的祼照放出来就行了。
这里必须提到可能吧的Jason NG，要不是他，我会写博客？有人说月光博客的成功不可复制的，但可能吧的成功是可以复制的，当然如果你认为可能吧不成功的话可以不用理我。
任何的成功都是用汗水泡出来的。但问题是，汗水泡的，不一定是成功，对吧。可能吧走的路是很好的，如果有人想复制，直接去Ctrl+C吧，不会复制的可以直接去问问他。
我花不了这么多时间在博客上，坐在电脑面前时间长了就会很累。而写了一年博客，有时候确实有点疲倦了，记得可能吧在经营了一年，就想停止更新了，可能那是因为压力吧，可能吧。我没有什么压力，所以一直这样更新下去没什么不可。

石油博客说：&#8220;曾经对这个博客（他的博客哈）很上心，付出了很多的心血，现在逐渐变得淡然了。也许当初设想把博客作为自己的一个所谓的事业来说，真的有点幼稚的可爱，网络毕竟不能变成现实。&#8221;
不知道你怎么看呢？
一年了，不多不少还是有点 收获的。
学到什么了？
1、订阅。
这确实是一个是很好的东西。第一时间获得信息，一是靠更多的人，二就是会看新闻。而订阅，免费的全球资讯。
2、耐心。
现在写文章没有以前那样的冲动了，想到什么就写什么，也不随便写文章了，不是每一件事都值得写的。耐心，还有就是要耐心看别人的文章，不要去了别的博客看都不看就留一下言。我不看别人博客，凭什么别人会看我博客。
3、坚持。
坚持总会有成就的，成就大小那是另一个问题。
写过哪些文章？
很多都是一系统的文章。
悲情华侨：《华侨门》《悲情华侨之1978越南排华》《悲情华侨之1998印尼暴动》《这里叫中国》
《随时评论》：1、2、3、4、5、6、7、8、9、10、11、12、13&#8230;&#8230;（会一直写下去，没有链接是被和谐掉的）
《最经典的错觉》：1、2、3、4、5、6（不知道能不能写下去）
《10位令人叹服的3D街头艺术家》：1、2、3
《10位顶呱呱的沙艺术家》：1、2、3
《NASA最经典的45张照片》：1、2、3
&#8230;&#8230;
唯一的一句就是，文章我都很用心去写，去翻译，去原创。
&#160;不足之处？
1、缺乏交流。
我很少跟大家聊天的，可能接触得太少了，不知道可以聊什么。又或者我跟别人交流本身就有点问题。
2、不够谦虚。
从文章的笔锋应该可以看出来。可能觉得文章必须得说服自己吧，所以语气有点强硬。
其他总结？
在这一年内，文章数目：218，留言数目：1491，首页PR：4，访问量：某数字，订阅数：某数字，网站排行：某数字，收入：收入？
感谢各位向我搞过稿的朋友，感谢各位看过我文章的朋友，感谢各位订阅的朋友。
因为有你们，我才会有动力更新下去。
相关东东这13个Wordpress插件，你安装了吗？32个高质量wordpress主题免费下载分享：45个Wordpress趣味主题16个优秀网站教你网站设计在五毛与愤青拉扯下的乔峰悲剧微博客现象操之过急，难以持久写博客之余，如何赚点小钱公告2则微说微博客
© Sonny for 尖笔头, 2008. &#124;
原文 &#124;
添加评论 &#124;
添加至
del.icio.us

Post tags: wordpress, 互联网, 博客, 思考做一下尖笔头读者调查问卷咯&#124;Twitter&#124;新浪微博&#124;“我的大学”征文活动
]]></description>
			<content:encoded><![CDATA[<p>考完试了，有时间更新博客了。</p>
<p>没错，我还是一个学生，比各位都嫩。我长得有多丑？哼哼，告诉你，这是<a href="http://photo.hainei.com/z0/00/5k/v616855.jpg" rel="lightbox[231]">帅哥</a>，那是以前的照片了，而坏消息是，现在更帅了。</p>
<p>前几天跟<a href="http://poorhenry.cn/">穷人</a>说，我要早他一步成为名博，其实那是说说而已，我没那么远大的理想，写博客就是为了有点追求，但不是追求名不名的，想名很容易的，把<a href="http://www.kenengba.com">可能吧</a>博主的祼照放出来就行了。</p>
<p>这里必须提到<a href="http://www.kenengba.com">可能吧</a>的Jason NG，要不是他，我会写博客？有人说<a href="http://www.williamlong.info/">月光博客</a>的成功不可复制的，但<a href="http://www.kenengba.com">可能吧</a>的成功是可以复制的，当然如果你认为<a href="http://www.kenengba.com">可能吧</a>不成功的话可以不用理我。</p>
<p>任何的成功都是用汗水泡出来的。但问题是，汗水泡的，不一定是成功，对吧。<a href="http://www.kenengba.com">可能吧</a>走的路是很好的，如果有人想复制，直接去Ctrl+C吧，不会复制的可以直接去问问他。</p>
<p>我花不了这么多时间在博客上，坐在电脑面前时间长了就会很累。而写了一年博客，有时候确实有点疲倦了，记得<a href="http://www.kenengba.com">可能吧</a>在经营了一年，就想停止更新了，可能那是因为压力吧，可能吧。我没有什么压力，所以一直这样更新下去没什么不可。</p>
<p style="text-align: center"><img alt="翻页效果" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2F_Npc-jGyPTWo%2FSR0xBL96GLI%2FAAAAAAAACkw%2FmnfEnw1W5tM%2Fs800%2F翻页效果.jpg" /></p>
<p><a href="http://www.blogpetro.com/">石油博客</a>说：&ldquo;曾经对这个博客（他的博客哈）很上心，付出了很多的心血，现在逐渐变得淡然了。也许当初设想把博客作为自己的一个所谓的事业来说，真的有点幼稚的可爱，网络毕竟不能变成现实。&rdquo;</p>
<p>不知道你怎么看呢？</p>
<p style="text-align: left"><b>一年了，不多不少还是有点 收获的。</b></p>
<h3><span style="background-color: rgb(0,255,0)">学到什么了？</span></h3>
<p>1、<a href="http://www.jianbitou.com/post/dingyue.html">订阅</a>。</p>
<p>这确实是一个是很好的东西。第一时间获得信息，一是靠更多的人，二就是会看新闻。而订阅，免费的全球资讯。</p>
<p>2、耐心。</p>
<p>现在写文章没有以前那样的冲动了，想到什么就写什么，也不随便写文章了，不是每一件事都值得写的。耐心，还有就是要耐心看别人的文章，不要去了别的博客看都不看就留一下言。我不看别人博客，凭什么别人会看我博客。</p>
<p>3、坚持。</p>
<p>坚持总会有成就的，成就大小那是另一个问题。</p>
<h3><span style="background-color: rgb(0,255,0)">写过哪些文章？</span></h3>
<p>很多都是一系统的文章。</p>
<p>悲情华侨：《<a href="http://www.jianbitou.com/post/chineseintelligence.html">华侨门</a>》《<a href="http://www.jianbitou.com/post/1978.html">悲情华侨之1978越南排华</a>》《<a href="http://www.jianbitou.com/post/1998.html">悲情华侨之1998印尼暴动</a>》《<a href="http://www.jianbitou.com/post/here-named-china.html">这里叫中国</a>》</p>
<p>《随时评论》：<a href="http://www.jianbitou.com/post/suishipinglun1.html">1</a>、<a href="http://www.jianbitou.com/post/suishipinglun2.html">2</a>、<a href="http://www.jianbitou.com/post/suishipinglun3.html">3</a>、<a href="http://www.jianbitou.com/post/suishipinglun4.html">4</a>、<a href="http://www.jianbitou.com/post/suishipinglun5.html">5</a>、<a href="http://www.jianbitou.com/post/suishipinglun6.html">6</a>、7、<a href="http://www.jianbitou.com/post/suishipinglun8.html">8</a>、<a href="http://www.jianbitou.com/post/suishipinglun9.html">9</a>、10、11、<a href="http://www.jianbitou.com/post/suishipinglun12.html">12</a>、<a href="http://www.jianbitou.com/post/suishipinglun13.html">13</a>&hellip;&hellip;（会一直写下去，没有链接是被和谐掉的）</p>
<p>《最经典的错觉》：<a href="http://www.jianbitou.com/post/zjddcj1.html">1</a>、<a href="http://www.jianbitou.com/post/zjddcj2.html">2</a>、<a href="http://www.jianbitou.com/post/zjddcj3.html">3</a>、<a href="http://www.jianbitou.com/post/zjddcj4.html">4</a>、<a href="http://www.jianbitou.com/post/zjddcj5.html">5</a>、<a href="http://www.jianbitou.com/post/zjddcj6.html">6</a>（不知道能不能写下去）</p>
<p>《10位令人叹服的3D街头艺术家》：<a href="http://www.jianbitou.com/post/top-10-3d-graffiti-artists-in-the-world-1.html">1</a>、<a href="http://www.jianbitou.com/post/top-10-3d-graffiti-artists-in-the-world-2.html">2</a>、<a href="http://www.jianbitou.com/post/top-10-3d-graffiti-artists-in-the-world-3.html">3</a></p>
<p>《10位顶呱呱的沙艺术家》：<a href="http://www.jianbitou.com/post/10-amazing-sand-artists-1.html">1</a>、<a href="http://www.jianbitou.com/post/10-amazing-sand-artists-2.html">2</a>、<a href="http://www.jianbitou.com/post/10-amazing-sand-artists-3.html">3</a></p>
<p>《NASA最经典的45张照片》：<a href="http://www.jianbitou.com/post/most-classic-45-photos-of-nasa-1.html">1</a>、<a href="http://www.jianbitou.com/post/most-classic-45-photos-of-nasa-2.html">2</a>、<a href="http://www.jianbitou.com/post/most-classic-45-photos-of-nasa-3.html">3</a></p>
<p>&hellip;&hellip;</p>
<p>唯一的一句就是，文章我都很用心去写，去翻译，去原创。</p>
<h3>&nbsp;<span style="background-color: rgb(0,255,0)">不足之处？</span></h3>
<p>1、缺乏交流。</p>
<p>我很少跟大家聊天的，可能接触得太少了，不知道可以聊什么。又或者我跟别人交流本身就有点问题。</p>
<p>2、不够谦虚。</p>
<p>从文章的笔锋应该可以看出来。可能觉得文章必须得说服自己吧，所以语气有点强硬。</p>
<h3><span style="background-color: rgb(0,255,0)">其他总结？</span></h3>
<p>在这一年内，文章数目：218，留言数目：1491，首页PR：4，访问量：某数字，订阅数：某数字，网站排行：某数字，收入：收入？</p>
<p>感谢各位向我搞过稿的朋友，感谢各位看过我文章的朋友，感谢各位订阅的朋友。</p>
<p>因为有你们，我才会有动力更新下去。</p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html" title="这13个Wordpress插件，你安装了吗？">这13个Wordpress插件，你安装了吗？</a></li><li><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html" title="32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a></li><li><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html" title="分享：45个Wordpress趣味主题">分享：45个Wordpress趣味主题</a></li><li><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html" title="16个优秀网站教你网站设计">16个优秀网站教你网站设计</a></li><li><a href="http://www.jianbitou.com/post/tragedyofqiaofeng.html" title="在五毛与愤青拉扯下的乔峰悲剧">在五毛与愤青拉扯下的乔峰悲剧</a></li><li><a href="http://www.jianbitou.com/post/microblog.html" title="微博客现象">微博客现象</a></li><li><a href="http://www.jianbitou.com/post/act-with-undue-haste.html" title="操之过急，难以持久">操之过急，难以持久</a></li><li><a href="http://www.jianbitou.com/post/make-money-from-blog.html" title="写博客之余，如何赚点小钱">写博客之余，如何赚点小钱</a></li><li><a href="http://www.jianbitou.com/post/notice.html" title="公告2则">公告2则</a></li><li><a href="http://www.jianbitou.com/post/micro-blog.html" title="微说微博客">微说微博客</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2008. |
<a href="http://www.jianbitou.com/post/one-year-old.html">原文</a> |
<a href="http://www.jianbitou.com/post/one-year-old.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/one-year-old.html&title=就这样，一年了">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/%e4%ba%92%e8%81%94%e7%bd%91" rel="tag">互联网</a>, <a href="http://www.jianbitou.com/post/tag/%e5%8d%9a%e5%ae%a2" rel="tag">博客</a>, <a href="http://www.jianbitou.com/post/tag/%e6%80%9d%e8%80%83" rel="tag">思考</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/one-year-old.html/feed</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>这13个Wordpress插件，你安装了吗？</title>
		<link>http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html</link>
		<comments>http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html#comments</comments>
		<pubDate>Sat, 27 Sep 2008 15:33:00 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[互联网里]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[分享]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[资源]]></category>

		<guid isPermaLink="false">http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html</guid>
		<description><![CDATA[前些天写了两篇关于wordpress主题（分享：45个Wordpress趣味主题，32个高质量wordpress主题免费下载）的文章，结果今天PageRank更新，32个高质量wordpress主题免费下载这篇发布了仅16天的文章，PR达到了4。虽然我觉得PR对我来说不是太重要，但起码PR=4告诉我，这样的文章是应该写的，因为对大家有用。
今天不说主题了，说插件。下面介绍13个大家不常用的插件，但很有意思，不妨试用一下。
1、WordPress Flash Photo Carousel Plugin

这个插件的功能简单来说就是用来播放照片的，一系列的照片按顺序在页面播放，就像一般的flash效果。
2、Plugin Manager 

这个插件看名字就知道是用于插件管理的，不过大家也明白在wordpress后台已经有这样的东东了，不过强在可直接在wordpress.org找适合的插件然后自动安装，这样大家无须再把插件下载解压再上传。不错的插件。
3、Manageable 

以前要编辑某篇文章的日期，题目，作者，类别，标签之类，必须进入&#8220;编辑（Edit）&#8221;页面，但装了Manageable 这个插件之后，在&#8220;管理（Manage）&#8221;页面即可修改以上内容，它将以内联编辑的形式嵌入管理（Manage）页面。不错，很方便。
4、DivvaFlip 

安装这个插件可以方便管理图片视频等多媒体。
5、Tweet This

这个插件可以在每个页面生成一个Twitter图标，方便读者分享至Twitter。
6、WP Easy Uploader

顾名思义，这也一个有助wordpress文件上传的插件，方便直接上传主题、插件或其他文件（如zblog转用wordpress导入的数据库）而无须借助ftp工具，在后台管理上传即可。
7、AddFreeStats WordPress Plugin

一个由AddfreeStats.com提供的免费统计插件，功能强大。
8、Featplug

这是一个不错的插件，它根据你博客文章的内容自动生成一个&#8220;简要&#8221;部分。这个插件应用很广泛，可以应用在 Blog/CMS/Forum等。
9、WP Super Cache 

这是一个wordpress加速显示插件，原理就是在后台生成由Apache提供的html文件，而无须解析繁重的PHP脚本，使显示加速。
10、Notifixious Plugin&#160; 

这个插件通过即时通信工具（AIM, MSN, GTalk, ICQ&#8230;），Email 或 SMS来提醒你的读者，你更新了！这个插件还提供一个widget，给你的读者选择使用哪种方式进行提醒。
11、20 Top Blog Summission Directories WordPress plugin

用于新建一个博客，苦无人知。这时候我们就需要提交至有关网站使之进行收录，这个插件就很好地帮助大家，一次向20个网站提交。
12、Interactive Video Plugin for WordPress

这是一个有助视频上传/烤制/导入的插件，方便关注视频回复，管理和跟踪视频内容。
13、I Love Social Bookmarking plugin

这个插件跟很多插件类似，用于整合各种大众媒体，方便作者与读者的交流。
这篇文章的插件都深度推荐的，不过如果你想知道一些常用的插件，这里有100个。
本文via。Sonny整理。
中文原文地址：http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html。
相关东东16个优秀网站教你网站设计32个高质量wordpress主题免费下载分享：45个Wordpress趣味主题20个优秀网站助你征服CSS专为女生打造的wordpress主题:pangpang-theme就这样，一年了7个关于Google Chrome的小东东11款完全免费的Web设计工具13个网页设计必备的Firefox扩展12个优秀的Flash/ActionScript国际级学堂
© Sonny for 尖笔头, 2008. &#124;
原文 &#124;
添加评论 &#124;
添加至
del.icio.us

Post tags: wordpress, 互联网, 分享, 博客, 资源做一下尖笔头读者调查问卷咯&#124;Twitter&#124;新浪微博&#124;“我的大学”征文活动
]]></description>
			<content:encoded><![CDATA[<p>前些天写了两篇关于wordpress主题（<a title="Permanent Link to 分享：45个Wordpress趣味主题" rel="bookmark" href="../../../../../post/45-beautiful-wordpress-designs.html">分享：45个Wordpress趣味主题</a>，<a href="../../../../../post/32-free-high-quality-wordpress-themes.html" rel="bookmark" title="Permanent Link to 32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a>）的文章，结果今天PageRank更新，<a href="../../../../../post/32-free-high-quality-wordpress-themes.html" rel="bookmark" title="Permanent Link to 32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a>这篇发布了仅16天的文章，PR达到了4。虽然我觉得PR对我来说不是太重要，但起码PR=4告诉我，这样的文章是应该写的，因为对大家有用。</p>
<p>今天不说主题了，说插件。下面介绍<a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html">13个大家不常用的插件</a>，但很有意思，不妨试用一下。</p>
<p><strong><font color="#800000"><a target="_blank" href="http://blueprintds.com/2008/09/16/wordpress-flash-photo-carousel-plugin/">1、WordPress Flash Photo Carousel Plugin</a></font></strong></p>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSN2_SvcnWII%2FAAAAAAAACKg%2FhNHYgzMn2wY%2Fs800%2F1.jpg" alt="" /></p>
<p>这个插件的功能简单来说就是用来播放照片的，一系列的照片按顺序在页面播放，就像一般的<a href="http://www.jianbitou.com/post/12-flash-tutorial-websites.html">flash效果</a>。</p>
<p><font color="#800000"><strong><a target="_blank" href="http://www.drunkadmin.com/projects/plugin-manager/">2、Plugin Manager </a></strong></font></p>
<p><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSN2_SiZhhQI%2FAAAAAAAACKo%2FfeFjyhx0N5Y%2Fs800%2F2.jpg" alt="" /></a></p>
<p>这个插件看名字就知道是用于插件管理的，不过大家也明白在<a href="http://www.jianbitou.com/post/tag/wordpress">wordpress</a>后台已经有这样的东东了，不过强在可直接在wordpress.org找适合的插件然后自动安装，这样大家无须再把插件下载解压再上传。不错的插件。</p>
<p><strong><font color="#800000"><a target="_blank" href="http://www.aaronharp.com/dev/wp-manageable/">3、Manageable </a></font></strong></p>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSN2_S38KF5I%2FAAAAAAAACKw%2FkJRD0mjI8Q8%2Fs800%2F3.jpg" alt="" /></p>
<p>以前要编辑某篇文章的日期，题目，作者，类别，标签之类，必须进入&ldquo;编辑（Edit）&rdquo;页面，但装了Manageable 这个插件之后，在&ldquo;管理（Manage）&rdquo;页面即可修改以上内容，它将以内联编辑的形式嵌入管理（Manage）页面。不错，很方便。</p>
<p><font color="#800000"><strong><a target="_blank" href="http://www.divva-plugins.com/divvaflip-26-flipping-album-plugin-the-new-update-for-wordpress-26/">4、DivvaFlip </a></strong></font></p>
<p><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSN2_S3ckH4I%2FAAAAAAAACK4%2F51Ez7R2TimI%2Fs800%2F4.jpg" alt="" /></a></p>
<p>安装这个插件可以方便管理<a href="http://www.jianbitou.com/post/tag/%e5%9b%be%e7%89%87">图片</a>视频等多媒体。</p>
<p><font color="#800000"><strong><a target="_blank" href="http://richardxthripp.thripp.com/tweet-this">5、Tweet This</a></strong></font></p>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSN2_S-BJCgI%2FAAAAAAAACLA%2FGMXS5qJlLMc%2Fs800%2F5.jpg" alt="" /></p>
<p>这个插件可以在每个页面生成一个Twitter图标，方便读者分享至Twitter。</p>
<p><font color="#800000"><strong><a target="_blank" href="http://gaarai.com/wordpress-plugins/wp-easy-uploader/">6、WP Easy Uploader</a></strong></font></p>
<p><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSN2_fzYYlAI%2FAAAAAAAACLI%2FyslFgLFEtww%2Fs800%2F6.jpg" alt="" /></a></p>
<p>顾名思义，这也一个有助wordpress文件上传的插件，方便直接上传主题、插件或其他文件（如<a href="../../../../../post/zblog_to_wordpress.html">zblog转用wordpress</a>导入的数据库）而无须借助ftp工具，在后台管理上传即可。</p>
<p><strong><font color="#800000"><a target="_blank" href="http://forum.addfreestats.com/phpBB3/viewtopic.php?f=3&amp;t=46&amp;start=0&amp;st=0&amp;sk=t&amp;sd=a&amp;sid=881a613bb93fb2ffd46fbc302874047f">7、AddFreeStats WordPress Plugin</a></font></strong></p>
<p><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSN2_gJNj9WI%2FAAAAAAAACLQ%2FmSK6N7NLEgI%2Fs800%2F7.jpg" alt="" /></a></p>
<p>一个由AddfreeStats.com提供的免费统计插件，功能强大。</p>
<p><font color="#800000"><strong><a target="_blank" href="http://featplug.huseyinuslu.net/">8、Featplug</a></strong></font></p>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSN2_gASLvII%2FAAAAAAAACLY%2FCZkzfIYOAVA%2Fs800%2F8.jpg" alt="" /></p>
<p>这是一个不错的插件，它根据你博客文章的内容自动生成一个&ldquo;简要&rdquo;部分。这个插件应用很广泛，可以应用在 Blog/CMS/Forum等。</p>
<p><font color="#800000"><strong><a target="_blank" href="http://ocaoimh.ie/wp-super-cache/">9、WP Super Cache </a></strong></font></p>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSN2_gPlp4lI%2FAAAAAAAACLg%2FJZyS6IsGARI%2Fs800%2F9.jpg" alt="" /></p>
<p>这是一个wordpress加速显示插件，原理就是在后台生成由Apache提供的html文件，而无须解析繁重的PHP脚本，使显示加速。</p>
<p><font color="#800000"><strong><a target="_blank" href="http://wordpress.org/extend/plugins/notifixious-plugin/">10、Notifixious Plugin&nbsp; </a></strong></font></p>
<p><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSN2_gPY3feI%2FAAAAAAAACLo%2Fa4iUPeNyvB0%2Fs800%2F10.jpg" alt="" /></a></p>
<p>这个插件通过即时通信工具（AIM, MSN, GTalk, ICQ&hellip;），Email 或 SMS来提醒你的读者，你更新了！这个插件还提供一个widget，给你的读者选择使用哪种方式进行提醒。</p>
<p><font color="#800000"><strong><a target="_blank" href="http://www.coolchecks.net/blog/wordpress/wordpressplugin.html">11、20 Top Blog Summission Directories WordPress plugin</a></strong></font></p>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSN2_pfDHaGI%2FAAAAAAAACLw%2FlqyWXxmh4Aw%2Fs800%2F11.jpg" alt="" /></p>
<p>用于<a href="http://www.jianbitou.com/post/jianbitou.html">新建一个博客</a>，苦无人知。这时候我们就需要提交至有关网站使之进行收录，这个插件就很好地帮助大家，一次向20个网站提交。</p>
<p><font color="#800000"><strong><a href="http://corp.kaltura.com/wordpress_video_plugin" target="_blank">12、Interactive Video Plugin for WordPress</a></strong></font></p>
<p><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSN2_pUSp2BI%2FAAAAAAAACL4%2FZQc_Tlyv0gU%2Fs800%2F12.jpg" alt="" /></a></p>
<p>这是一个有助视频上传/烤制/导入的插件，方便关注视频回复，管理和跟踪视频内容。</p>
<p><strong><font color="#800000"><a href="http://www.milienzo.com/wordpress-plugins/i-love-social-bookmarking/" target="_blank"><strong>13、I Love Social Bookmarking plugin</strong></a></font></strong></p>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSN2_pRD6hMI%2FAAAAAAAACMA%2FpfvBsTsH-3s%2Fs800%2F13.jpg" alt="" /></p>
<p>这个插件跟很多插件类似，用于整合各种大众媒体，方便作者与读者的交流。</p>
<p>这篇文章的插件都深度推荐的，不过如果你想知道一些常用的插件，<a href="http://www.kenengba.com/post/356.html">这里有100个</a>。</p>
<p><a href="http://www.smashingapps.com/2008/09/23/13-wordpress-plugins-you-probably-dont-use-but-should.html">本文via</a>。<a href="http://www.jianbitou.com">Sonny</a>整理。</p>
<p>中文原文地址：<a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html">http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html</a>。</p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html" title="16个优秀网站教你网站设计">16个优秀网站教你网站设计</a></li><li><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html" title="32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a></li><li><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html" title="分享：45个Wordpress趣味主题">分享：45个Wordpress趣味主题</a></li><li><a href="http://www.jianbitou.com/post/20_websites-learn-master-css.html" title="20个优秀网站助你征服CSS">20个优秀网站助你征服CSS</a></li><li><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html" title="专为女生打造的wordpress主题:pangpang-theme">专为女生打造的wordpress主题:pangpang-theme</a></li><li><a href="http://www.jianbitou.com/post/one-year-old.html" title="就这样，一年了">就这样，一年了</a></li><li><a href="http://www.jianbitou.com/post/7-top-tips-and-resources-for-google-chrome.html" title="7个关于Google Chrome的小东东">7个关于Google Chrome的小东东</a></li><li><a href="http://www.jianbitou.com/post/11-free-and-helpful-web-based-tools.html" title="11款完全免费的Web设计工具">11款完全免费的Web设计工具</a></li><li><a href="http://www.jianbitou.com/post/13-amazing-firefox-add-ons-to-make-designers-lives-easier.html" title="13个网页设计必备的Firefox扩展">13个网页设计必备的Firefox扩展</a></li><li><a href="http://www.jianbitou.com/post/12-flash-tutorial-websites.html" title="12个优秀的Flash/ActionScript国际级学堂">12个优秀的Flash/ActionScript国际级学堂</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2008. |
<a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html">原文</a> |
<a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html&title=这13个Wordpress插件，你安装了吗？">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/%e4%ba%92%e8%81%94%e7%bd%91" rel="tag">互联网</a>, <a href="http://www.jianbitou.com/post/tag/%e5%88%86%e4%ba%ab" rel="tag">分享</a>, <a href="http://www.jianbitou.com/post/tag/%e5%8d%9a%e5%ae%a2" rel="tag">博客</a>, <a href="http://www.jianbitou.com/post/tag/%e8%b5%84%e6%ba%90" rel="tag">资源</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>32个高质量wordpress主题免费下载</title>
		<link>http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html</link>
		<comments>http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html#comments</comments>
		<pubDate>Thu, 11 Sep 2008 12:39:46 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[资源共享]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[分享]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[美]]></category>

		<guid isPermaLink="false">http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html</guid>
		<description><![CDATA[我以前觉得博客的样子不是太重要的，只要内容好就会多人看，后来发现不是这样的。人都很相信自己的眼睛，喜欢表情丰富，在我刚从zblog转用wordpress，我用的是这个wordpress主题，太简单，后来觉得重新修改成自己喜欢的样子很麻烦，才用了现在这个wordpress主题。
上次发布了分享：45个Wordpress主题，有人转载了之后说这45个wordpress主题好是好，但不是免费的，想用还得开口叫别人要，其实很早以前我就知道很多很棒的wordpress主题可供免费下载，现在全部告诉大家。我简单介绍下面32个wordpress主题（这里说是30个，有些也不介绍了），最后放一些链接，都是一些wordpress主题分享。
1. Colourise
一个两栏的主题，暗色为主色调，超大图片标题，内容丰富的footer。

2. Twilight Saga WordPress theme

色调也是以暗色为主，风格简洁鲜明，是不是挺温和的？

3. NewsWeek Wordpress theme
一个三栏的主题，特意放好明显的广告位，色彩简单。但个人觉得这个主题太亮，有点张扬耀眼。

4. Superfresh
一个三栏的主题，是我很喜欢的绿色，经测试，这个主题对wordpress2.6兼容得很好，而且在 Firefox, Internet Explorer 6 &#38; 7, Opera,和 Safari显示正常。个人觉得这个主题不错。

5. Our Rights WordPress theme

兼容wordpress2.5，有高质量的CSS/XHTML，在IE6Win, Firefox 2, Opera 9 和 Safari 3 均显示正常。

6. Thunderbolt WordPress theme

这个主题相当简约，杂志风格，可以放入博主图片和说明，不过，我觉得有点单调。

7. WP Imagination

8. Resurrection
是我最喜欢的沉默低调风格，建议大家试试。

9. Studio Wordpress主题

10. Ashford WordPress theme

&#160;这个主题适合于一些资源博客。空旷的地方比较多，很舒服。

11. Vikiworks V5 theme

12. Lady In Green

13. The &#8220;Charred&#8221; WordPress theme


14. MassivePress WordPress theme


15. Portfolio [...]]]></description>
			<content:encoded><![CDATA[<p>我以前觉得博客的样子不是太重要的，只要内容好就会多人看，后来发现不是这样的。人都很相信自己的眼睛，喜欢表情丰富，在我刚从<a href="http://www.jianbitou.com/post/zblog_to_wordpress.html">zblog转用wordpress</a>，我用的是<a href="http://www.jianbitou.com/post/86.html">这个wordpress主题</a>，太简单，后来觉得重新修改成自己喜欢的样子很麻烦，才用了现在<a href="http://www.jianbitou.com">这个wordpress主题</a>。</p>
<p>上次发布了<a title="Permanent Link to 分享：45个Wordpress趣味主题" rel="bookmark" href="../../../../../post/45-beautiful-wordpress-designs.html">分享：45个Wordpress主题</a>，有人转载了之后说这45个wordpress主题好是好，但不是免费的，想用还得开口叫别人要，其实很早以前我就知道很多很棒的wordpress主题可供免费下载，现在全部告诉大家。我简单介绍下面32个wordpress主题（<a href="http://www.smashingmagazine.com/2008/08/25/30-free-high-quality-wordpress-themes/">这里</a>说是30个，有些也不介绍了），最后放一些链接，都是一些wordpress主题分享。</p>
<h3>1. <a href="http://www.bestwpthemes.com/colourise/">Colourise</a></h3>
<p>一个两栏的主题，暗色为主色调，超大图片标题，内容丰富的footer。</p>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSMCrBCy1ULI%2FAAAAAAAAB3s%2FwN_Njzzfe3s%2Fs800%2F1.jpg" /></p>
<h3>2. <a href="http://www.farfromfearless.com/2008/07/11/twilight-saga-wordpress-theme/">Twilight Saga WordPress theme<br />
</a></h3>
<p>色调也是以暗色为主，风格简洁鲜明，是不是挺温和的？</p>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSMCrBUWBF9I%2FAAAAAAAAB30%2FlrvxhgCs2k0%2Fs800%2F2.jpg" /></a></p>
<h3>3. <a href="http://premiumthemes.net/freethemes/newsweek.html">NewsWeek Wordpress theme</a></h3>
<p>一个三栏的主题，特意放好明显的广告位，色彩简单。但个人觉得这个主题太亮，有点张扬耀眼。</p>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSMCrBsRm0EI%2FAAAAAAAAB38%2FRUPoWnNYDfw%2Fs800%2F3.jpg" /></p>
<h3>4. <a href="http://themetation.com/superfresh/">Superfresh</a></h3>
<p>一个三栏的主题，是我很喜欢的绿色，经测试，这个主题对wordpress2.6兼容得很好，而且在 Firefox, Internet Explorer 6 &amp; 7, Opera,和 Safari显示正常。个人觉得这个主题不错。</p>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSMCrBxehLAI%2FAAAAAAAAB4E%2F4YzIUA44Hhw%2Fs800%2F4.jpg" alt="wordpress主题" /></a></p>
<h3>5. <a href="http://wplover.com/our-rights-wordpress-theme/">Our Rights WordPress theme<br />
</a></h3>
<p>兼容wordpress2.5，有高质量的CSS/XHTML，在IE6Win, Firefox 2, Opera 9 和 Safari 3 均显示正常。</p>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSMCrCG7ELKI%2FAAAAAAAAB4M%2FRQ5QCwOQsCs%2Fs800%2F5.jpg" /></p>
<h3>6. <a href="http://www.bestwpthemes.com/thunderbolt/">Thunderbolt WordPress theme<br />
</a></h3>
<p>这个主题相当简约，杂志风格，可以放入博主图片和说明，不过，我觉得有点单调。</p>
<p><img alt="" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrCIEXVOI%2FAAAAAAAAB4U%2FpENYCwrLbao%2Fs800%2F6.jpg" /></p>
<h3>7. <a href="http://www.themelab.com/2008/03/05/free-release-18-wp-imagination/">WP Imagination</a></h3>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrCmk5TqI%2FAAAAAAAAB4c%2FGX4vNZ42WAM%2Fs800%2F7.jpg" alt="wordpress主题" /></a></p>
<h3>8. <a href="http://vikiworks.com/2007/09/11/wp-theme-resurrection/">Resurrection</a></h3>
<p>是我最喜欢的沉默低调风格，建议大家试试。</p>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrCmMx_dI%2FAAAAAAAAB4k%2FdTpZO7eJXtc%2Fs800%2F8.jpg" /></p>
<h3>9. <a href="http://blogdesignstudio.com/premiere/?p=24">Studio Wordpress主题</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrDDVzYQI%2FAAAAAAAAB4s%2FdCXYLyW7_SA%2Fs800%2F9.jpg" /></p>
<h3>10. <a href="http://ashford.turtleinteractive.com/">Ashford WordPress theme<br />
</a></h3>
<p>&nbsp;这个主题适合于一些资源博客。空旷的地方比较多，很舒服。</p>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSMCrDJxYmBI%2FAAAAAAAAB40%2FFt-aWZZQMto%2Fs800%2F10.jpg" /></a></p>
<h3>11. <a href="http://themes.utombox.com/vikiworks-v5-theme/">Vikiworks V5 theme</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSMCrDUTXJpI%2FAAAAAAAAB48%2FMfkGul8vKsM%2Fs800%2F11.jpg" /></p>
<h3>12. <a href="http://gebalatomasz.com/ladyingreen/?p=11">Lady In Green</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrDk19DoI%2FAAAAAAAAB5E%2FjPEtF-AZviI%2Fs800%2F12.jpg" /></p>
<h3>13. <a href="http://www.wpelements.com/2008/04/16/introducing-the-charred-wordpress-theme/">The &ldquo;Charred&rdquo; WordPress theme<br />
</a></h3>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSMCrD0vvZSI%2FAAAAAAAAB5M%2F7Bdv7IU6Cm8%2Fs800%2F13.jpg" /></a></p>
<h3>14. <a href="http://www.wpelements.com/2008/05/29/introducing-the-massivepress-wordpress-theme/">MassivePress WordPress theme<br />
</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSMCrEsDeRUI%2FAAAAAAAAB5U%2FXzW4tSHBgak%2Fs800%2F14.jpg" /></p>
<h3>15. <a href="http://www.dailywp.com/portfolio-wordpress-theme/">Portfolio Wordpress theme<br />
</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSMCrE5TRrjI%2FAAAAAAAAB5c%2FC-HUcAaadws%2Fs800%2F15.jpg" /></p>
<h3>16. <a href="http://wefunction.com/2008/07/free-theme-outdoorsy/">Outdoorsy Theme</a></h3>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSMCrFNtW3XI%2FAAAAAAAAB5k%2F7h1_9eVsuqU%2Fs800%2F16.jpg" /></a></p>
<h3>17. <a href="http://www.arthack.org/guzel-magazine.html">Guzel Magazine WordPress theme<br />
</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSMCrFW3orHI%2FAAAAAAAAB5s%2FVKtxXvKeyN4%2Fs800%2F17.jpg" /></p>
<h3>18. <a href="http://curtishenson.com/checkmate/">Free Premium Themes Check Mate</a></h3>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSMCrFq97tXI%2FAAAAAAAAB50%2Fx8FIHdfMUW4%2Fs800%2F18.jpg" /></a></p>
<h3>19. <a href="http://www.themelab.com/2008/08/14/miniml-free-wordpress-theme/">Miniml &#8211; Free WordPress theme<br />
</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSMCrGB2K4dI%2FAAAAAAAAB58%2FIDczusNFMQE%2Fs800%2F19.jpg" /></p>
<h3>20. <a href="http://www.category4.com/2008/04/08/ultimate-baseball-theme-for-wordpress-released/">Ultimate Baseball Wordpress theme<br />
</a></h3>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrGLCPVMI%2FAAAAAAAAB6E%2Fl48GSXVp3Uw%2Fs800%2F20.jpg" /></a></p>
<h3>21. <a href="http://michaelhutagalung.com/2008/08/arthemia-20-released-the-updates/">Arthemia 2.0</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSMCrGf-XIaI%2FAAAAAAAAB6M%2FLcwuwPCriy8%2Fs800%2F21.jpg" /></p>
<h3>22. <a href="http://wpcodaorange.kerrywebster.com/">WP CODA Orange</a></h3>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrGgH5lTI%2FAAAAAAAAB6U%2FFaiadoYpDSg%2Fs800%2F22.jpg" /></a></p>
<h3>23. <a href="http://www.blogohblog.com/wordpress-theme-firebug/">Firebug WordPress theme<br />
</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSMCrG-wdHWI%2FAAAAAAAAB6c%2F44IZsuoR7mU%2Fs800%2F23.jpg" /></p>
<h3>24. <a href="http://daus.trala.la/2008/08/02/refreshed-wordpress-theme/">Refreshed Wordpress theme<br />
</a></h3>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSMCrG7XiAiI%2FAAAAAAAAB6k%2FQuIq-Mu3gzU%2Fs800%2F24.jpg" /></a></p>
<h3>25. <a href="http://www.dailywp.com/lightning-wordpress-theme/">Lightning Wordpress theme<br />
</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSMCrHM9lWMI%2FAAAAAAAAB6s%2FB70E_lqKQm4%2Fs800%2F25.jpg" /></p>
<h3>26. <s>Dirty Girl Theme 1.0</s></h3>
<p>不好意思，这个主题已经不能下载。</p>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSMCrHZuIqeI%2FAAAAAAAAB60%2FPD772s0XK0s%2Fs800%2F26.jpg" /></p>
<h3>27. <a href="http://www.powertheme.com/themes/elegance/">Elegance WordPress theme<br />
</a></h3>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSMCrHvB44LI%2FAAAAAAAAB68%2FCZucq0Dklys%2Fs800%2F27.jpg" /></p>
<h3>28. <a href="http://leonpaternoster.com/blog/2008/08/introducing-the-into-the-white-theme-for-wordpress/">Leon Paternoster &raquo; Posts &raquo; Introducing the &ldquo;Into the White&rdquo; theme for WordPress</a></h3>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSMCrH_C_hzI%2FAAAAAAAAB7E%2F7O1vhamt2SA%2Fs800%2F28.jpg" /></a></p>
<p>上面的主题主要是应用于个人博客，下面这三个是杂志类型的，要做杂志类网站博客的朋友，可以试用一下。</p>
<h3>29. <a href="http://www.smashingmagazine.com/2008/08/08/infinity-a-free-wordpress-theme/">Infinity: A Free Wordpress theme<br />
</a></h3>
<p>三栏，Flickr, Delicious 和Twitter风格集于一身。</p>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSMCrH_b4vWI%2FAAAAAAAAB7M%2FYNHogmmF0GQ%2Fs800%2F29.jpg" /></p>
<h3>30. <a href="http://www.smashingmagazine.com/2008/07/16/wordpress-fun-a-free-wordpress-theme/">Wordpress.fun</a></h3>
<p>两栏，适合于娱乐型杂志博客。</p>
<p><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html"><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSMCrIOx1g0I%2FAAAAAAAAB7U%2FUNS7cIGaZNg%2Fs800%2F30.jpg" /></a></p>
<h3>31. <a href="http://www.smashingmagazine.com/2008/08/05/fervens-a-free-wordpress-theme/">Fervens: A Free Wordpress theme<br />
</a></h3>
<p>固定宽度的三栏，个人觉得不是太有特色，当然是愚见了。</p>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSMCrIeY87BI%2FAAAAAAAAB7c%2FPXZ_6lI5wZY%2Fs800%2F31.jpg" /></p>
<h3>32. <a href="http://www.smashingmagazine.com/2008/08/20/notepad-chaos-a-free-wordpress-theme/">Notepad Chaos</a></h3>
<p>我很喜欢这个，因为有手写风格，比较人性化，而且带了点埃及风格。</p>
<p><img alt="wordpress主题" src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSMCrIhBf62I%2FAAAAAAAAB7k%2F_vqjo9FEC5s%2Fs800%2F32.jpg" /></p>
<p>&nbsp;是不是觉得不够，不要紧，<a href="http://www.jianbitou.com">Sonny</a>说，下面还有：</p>
<p><a href="http://www.smashingmagazine.com/2008/01/08/100-excellent-free-high-quality-wordpress-themes/">100 Excellent Free WordPress Themes</a></p>
<p><a href="http://www.smashingmagazine.com/2007/02/09/83-beautiful-wordpress-themes-you-probably-havent-seen/">83 Beautiful WordPress Themes</a></p>
<p><a title="Permanent Link to 分享：45个Wordpress趣味主题" rel="bookmark" href="../../../../../post/45-beautiful-wordpress-designs.html">45个Wordpress趣味主题</a></p>
<p><a href="http://www.smashingmagazine.com/2007/05/07/10-fresh-elegant-and-clean-wordpress-themes/">10 Fresh and Clean Themes</a></p>
<p>好了，以后不打算再分享主题了，除非我自己能开发出一个，哈哈，太不可思异了。</p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html" title="这13个Wordpress插件，你安装了吗？">这13个Wordpress插件，你安装了吗？</a></li><li><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html" title="分享：45个Wordpress趣味主题">分享：45个Wordpress趣味主题</a></li><li><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html" title="16个优秀网站教你网站设计">16个优秀网站教你网站设计</a></li><li><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html" title="专为女生打造的wordpress主题:pangpang-theme">专为女生打造的wordpress主题:pangpang-theme</a></li><li><a href="http://www.jianbitou.com/post/one-year-old.html" title="就这样，一年了">就这样，一年了</a></li><li><a href="http://www.jianbitou.com/post/20_websites-learn-master-css.html" title="20个优秀网站助你征服CSS">20个优秀网站助你征服CSS</a></li><li><a href="http://www.jianbitou.com/post/38-beautiful-hdr-pictures.html" title="38张超炫的HDR照片">38张超炫的HDR照片</a></li><li><a href="http://www.jianbitou.com/post/22-beautiful-fantasy-photoshop-tutorials.html" title="22张梦幻派photoshop教程级图片">22张梦幻派photoshop教程级图片</a></li><li><a href="http://www.jianbitou.com/post/zblog_to_wordpress.html" title="本地测试：Zblog转Wordpress">本地测试：Zblog转Wordpress</a></li><li><a href="http://www.jianbitou.com/post/my-university.html" title="启动“我的大学”征文活动">启动“我的大学”征文活动</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2008. |
<a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html">原文</a> |
<a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html&title=32个高质量wordpress主题免费下载">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/%e4%ba%92%e8%81%94%e7%bd%91" rel="tag">互联网</a>, <a href="http://www.jianbitou.com/post/tag/%e5%88%86%e4%ba%ab" rel="tag">分享</a>, <a href="http://www.jianbitou.com/post/tag/%e5%8d%9a%e5%ae%a2" rel="tag">博客</a>, <a href="http://www.jianbitou.com/post/tag/%e7%be%8e" rel="tag">美</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html/feed</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>分享：45个Wordpress趣味主题</title>
		<link>http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html</link>
		<comments>http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html#comments</comments>
		<pubDate>Tue, 02 Sep 2008 14:01:53 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[资源共享]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[分享]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[图片]]></category>
		<category><![CDATA[设计]]></category>

		<guid isPermaLink="false">http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html</guid>
		<description><![CDATA[这一次又分享点东西吧，45个wp主题，不同版本的wordpress都有份儿，第一个还说是2.7以上的，这么快？
有时候爱死Jacob Gube ，这一次又是他告诉大家的，我已经翻译过他三篇文章，这是第三篇，另外两篇是：20个优秀网站助你征服CSS，16个优秀网站教你网站设计。声明一点就是，这45个主题不是让大家下载的，提供的地址都是一些可爱博客的地址，要想分享这些主题，给该博主一个邮件是最好的做法。
1. Matt Mullenweg

Wordpress最佳适用版本：2.7或更高
2. Macalicious

Wordpress最佳适用版本：2.6
3. Design Reviver

Wordpress最佳适用版本：2.6.1
4. N.Design Studio

Wordpress最佳适用版本：2.2
5. boedesign

Wordpress最佳适用版本：2.5.1
6. Tony Geer

Wordpress最佳适用版本：2.5.1
7. Rawkes

Wordpress最佳适用版本：不详
8. Twiistup

Wordpress最佳适用版本：2.5.1
9. OLDesign

Wordpress最佳适用版本：不详
10. The  Horizontal Way

Wordpress最佳适用版本：2.5
11. Lettland

Wordpress最佳适用版本：2.5.1
12. been said

Wordpress最佳适用版本：2.5
13. Made in  England

Wordpress最佳适用版本：2.5
14. Style 4 you

Wordpress最佳适用版本：2.5.1
15. Weblog.ChrizDee

Wordpress最佳适用版本：2.5.1
16. Design Disease

Wordpress最佳适用版本：2.5.1
17. I Love Typography

Wordpress最佳适用版本：2.6.1
18. nataliadevalle.com.ar

Wordpress最佳适用版本：2.5.1
19. Doug Dosberg

Wordpress最佳适用版本：不详
20. Carsonified

Wordpress最佳适用版本：2.0.5
21. Pointless  Ramblings

Wordpress最佳适用版本：2.6.1
22. yo vivo en Vigo

Wordpress最佳适用版本： 2.6.1
23. novus.volce

Wordpress最佳适用版本：2.6
24. GoMediaZine

Wordpress最佳适用版本：2.6
25. AMRZ

Wordpress最佳适用版本：2.5
26. Sean Johnson

Wordpress最佳适用版本：2.6
27. Łukasz Adamczak

Wordpress最佳适用版本：2.5.1
28. [...]]]></description>
			<content:encoded><![CDATA[<p>这一次又分享点东西吧，45个wp主题，不同版本的wordpress都有份儿，第一个还说是2.7以上的，这么快？</p>
<p>有时候爱死<span class="authorInfo"><a href="http://sixrevisions.com/wordpress/beautiful_wordpress_designs/">Jacob Gube</a> ，这一次又是他告诉大家的，我已经翻译过他三篇文章，这是第三篇，另外两篇是：</span><a title="Permanent Link to 20个优秀网站助你征服CSS" rel="bookmark" href="../../../../../post/20_websites-learn-master-css.html">20个优秀网站助你征服CSS</a>，<a title="Permanent Link to 16个优秀网站教你网站设计" rel="bookmark" href="../../../../../post/16_sites_web_design_inspiratio.html">16个优秀网站教你网站设计</a>。<span style="background-color: rgb(153, 204, 0);">声明一点就是</span>，这45个主题不是让大家下载的，提供的地址都是一些可爱博客的地址，要想分享这些主题，给该博主一个邮件是最好的做法。</p>
<h4>1. <a href="http://ma.tt/">Matt Mullenweg</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL021KL8Y9I%2FAAAAAAAABpk%2Fg1WibcImx58%2Fs800%2F31-01_matt_mullenweg.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.7或更高</span></p>
<h4>2. <a href="http://www.macalicious.com/">Macalicious</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL021LPXHDI%2FAAAAAAAABps%2FCnmgnNDe4CM%2Fs800%2F31-02_macalicious.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6</span></p>
<h4>3. <a href="http://designreviver.com/">Design Reviver</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL021VUDUOI%2FAAAAAAAABp0%2F2KdPiLf9nBw%2Fs800%2F31-03_design_reviver.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6.1</span></p>
<h4>4. <a href="http://www.ndesign-studio.com/">N.Design Studio</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSL021eEApdI%2FAAAAAAAABp8%2FVVe0j3GLr0Q%2Fs800%2F31-04_ndesign_studio.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.2</span></p>
<h4>5. <a href="http://boedesign.com/">boedesign</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL021X0v7GI%2FAAAAAAAABqE%2Fl6SVmj-qna0%2Fs800%2F31-05_boedesign.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>6. <a href="http://www.tonygeer.com/">Tony Geer</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL027TB98AI%2FAAAAAAAABqM%2F8UT3hCAR3xM%2Fs800%2F31-06_tony_geer.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>7. <a href="http://rawkes.com/">Rawkes</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL027ryKj9I%2FAAAAAAAABqU%2FZvJv5AtTfEY%2Fs800%2F31-07_rawkes.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：不详</p>
<h4>8. <a href="http://www.twiistup.com/">Twiistup</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL027hlo9aI%2FAAAAAAAABqc%2FLEg61f9CLR8%2Fs800%2F31-08_twiistup.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>9. <a href="http://lonnroth.info/blog/">OLDesign</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL0278XXzOI%2FAAAAAAAABqk%2Fb8CrzvD_8C8%2Fs800%2F31-09_oldesign.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：不详</p>
<h4>10. <a href="http://www.thehorizontalway.com/">The  Horizontal Way</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL0271SQNdI%2FAAAAAAAABqs%2FK1HA67W7-so%2Fs800%2F31-10_the_horizontal_way.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5</span></p>
<h4>11. <a href="http://www.lettland-guide.de/">Lettland</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03EoN4lNI%2FAAAAAAAABq0%2Ff4CKfQWVjXQ%2Fs800%2F31-11_lettland.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>12. <a href="http://beensaid.com/">been said</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03EiKgUSI%2FAAAAAAAABq8%2F6pqJaPRcQMQ%2Fs800%2F31-12_been_said.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5</span></p>
<h4>13. <a href="http://www.made-in-england.org/">Made in  England</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSL03E1p-nMI%2FAAAAAAAABrE%2F-i4wI3HWLQU%2Fs800%2F31-13_made_in_england.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5</span></p>
<h4>14. <a href="http://www.style4you.it/blog/">Style 4 you</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL03E3Ns09I%2FAAAAAAAABrM%2FYrHvkOzkjn4%2Fs800%2F31-14_style_4_you.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>15. <a href="http://www.chrizdee.de/wordpress/">Weblog.ChrizDee</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL03EwQc6oI%2FAAAAAAAABrU%2FLJCj9BWECEg%2Fs800%2F31-15_weblog_chrizdee.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>16. <a title="Design Disease - Blog Design" href="http://designdisease.com/">Design Disease</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSL03Km_L85I%2FAAAAAAAABrc%2FdzTkfQDv4Tw%2Fs800%2F31-16_design_disease.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>17. <a href="http://ilovetypography.com/">I Love Typography</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03Kphiw4I%2FAAAAAAAABrk%2F15qniwp7X1U%2Fs800%2F31-17_i_love_typography.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6.1</span></p>
<h4>18. <a href="http://nataliadevalle.com.ar/">nataliadevalle.com.ar</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL03KoaBv_I%2FAAAAAAAABrs%2FukxrmKaCYSs%2Fs800%2F31-18_natalia.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>19. <a href="http://dougdosberg.com/">Doug Dosberg</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL03KqcJMnI%2FAAAAAAAABr0%2FdryGQFd3GUQ%2Fs800%2F31-19_doug_dosberg.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：不详</p>
<h4>20. <a href="http://www.carsonified.com/">Carsonified</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03K7QzqqI%2FAAAAAAAABr8%2F-xdBJuX5A4w%2Fs800%2F31-20_carsonified.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.0.5</span></p>
<h4>21. <a href="http://pointlessramblings.com/">Pointless  Ramblings</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03RWU1h6I%2FAAAAAAAABsE%2FNGsDi2Qm_fk%2Fs800%2F31-21_pointless_ramblings.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6.1</span></p>
<h4>22. <a href="http://www.yovivoenvigo.com/">yo vivo en Vigo</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL03RvAtqCI%2FAAAAAAAABsM%2FKJ3o_8vNljU%2Fs800%2F31-22_yo_vivo_en_vigo.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption"> 2.6.1</span></p>
<h4>23. <a href="http://novus.byvolce.com/">novus.volce</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03Ru7YOuI%2FAAAAAAAABsU%2F9dtxEFael4M%2Fs800%2F31-23_novus_volce.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6</span></p>
<h4>24. <a href="http://www.gomediazine.com/">GoMediaZine</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSL03RgT7L8I%2FAAAAAAAABsc%2F7d3ZT_GnZHQ%2Fs800%2F31-24_gomediazine.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6</span></p>
<h4>25. <a href="http://www.amymahon.com/">AMRZ</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03RkEQB7I%2FAAAAAAAABsk%2FGagv4VnWtro%2Fs800%2F31-25_amrz.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5</span></p>
<h4>26. <a href="http://seanjohnson.net/">Sean Johnson</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03WuSA0qI%2FAAAAAAAABss%2F8i7kbuOAnKQ%2Fs800%2F31-26_sean_johnson.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6</span></p>
<h4>27. <a href="http://czak.pl/">Łukasz Adamczak</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSL03WkirGuI%2FAAAAAAAABs0%2FcmSIhgWY4CI%2Fs800%2F31-27_lukasz_adamczak.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>28. <a href="http://www.elliotjaystocks.com/blog/">Elliot  Jay Stocks</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03W6LJ3sI%2FAAAAAAAABs8%2FW-SCFtNDAGM%2Fs800%2F31-28_elliot_jay_stocks.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.1.3</span></p>
<h4>29. <a href="http://www.bbasket.net/">B-basket</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL03WyQMrsI%2FAAAAAAAABtE%2FDtEEV8wKC_E%2Fs800%2F31-29_b-basket.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6.1</span></p>
<h4>30. <a href="http://iconicon.net/">Icon Icon</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03W7gBAoI%2FAAAAAAAABtM%2FNvHUIrX24oM%2Fs800%2F31-30_icon_icon.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5</span></p>
<h4>31. <a href="http://webstock.org.nz/blog/">Webstock words</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03cq9-FEI%2FAAAAAAAABtU%2Fdy-VYg3G26U%2Fs800%2F31-31_webstock_words.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>32. <a href="http://www.areyoufamiliar.com/unfamiliar/">Unfamiliar  Records</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03cv6EtQI%2FAAAAAAAABtc%2F0FO2CIXb1Sg%2Fs800%2F31-32_unfamiliar_records.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption"> 2.3.2</span></p>
<h4>33. <a href="http://evanhanson.com/blog/">Evan Hanson</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSL03c4HWk9I%2FAAAAAAAABtk%2Fdjxtha0ATNM%2Fs800%2F31-33_evan_hanson.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6</span></p>
<h4>34. <a href="http://www.moblogic.tv/category/blog/">Blog at  MobLogic.tv</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03c_fnrkI%2FAAAAAAAABts%2FVvC68NBZs4k%2Fs800%2F31-34_moblogic_tv.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.3.3</span></p>
<h4>35. <a href="http://malenehald.dk/blog/">Malene Hald</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03c0GNMHI%2FAAAAAAAABt0%2FiPSFoAj5hK0%2Fs800%2F31-35_malene_hald.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6</span></p>
<h4>36. <a href="http://northxeast.com/">NxE</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03hw1vjRI%2FAAAAAAAABt8%2FKnr7c479yyI%2Fs800%2F31-36_nxe.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6</span></p>
<h4>37. <a href="http://www.mutado.com/">Mutado</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL03h5hk7LI%2FAAAAAAAABuE%2Fr4CLNGs_JKA%2Fs800%2F31-37_mutado.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.2.1</span></p>
<h4>38. <a href="http://wefunction.com/">Function Web Design &amp; Development</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03iGAc2iI%2FAAAAAAAABuM%2FDWLTxZ4KcOg%2Fs800%2F31-38_function.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5</span></p>
<h4>39. <a href="http://shut.elmota.com/">Shut Theory</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSL03iIvDGkI%2FAAAAAAAABuU%2FmQbgg6cLFME%2Fs800%2F31-39_shuttheory.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.0.5</span></p>
<h4>40. <a href="http://www.the9513.com/">The 9513</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03iE-45nI%2FAAAAAAAABuc%2FM4h4mNR-gMs%2Fs800%2F31-40_the_9513.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：不详</p>
<h4>41. <a href="http://www.cheb.com.au/">Cheb 2.0</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03m6mZcOI%2FAAAAAAAABuk%2FB6Nix9HZg30%2Fs800%2F31-41_cheb_2_0.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6</span></p>
<h4>42. <a href="http://www.ironwulf.net/">Ironwulf.net</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03m7QJvpI%2FAAAAAAAABus%2FNvL2KghAAhw%2Fs800%2F31-42_ironwulf.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6.1</span></p>
<h4>43. <a href="http://www.kineda.com/">Kineda</a></h4>
<p><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03mycnrZI%2FAAAAAAAABu0%2FcwiyTMCScSQ%2Fs800%2F31-43_kineda.jpg" alt="" /></a></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.5.1</span></p>
<h4>44. <a href="http://mattbrett.com/">Matt Brett</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSL03nImG2JI%2FAAAAAAAABu8%2FntNr_p-o0XU%2Fs800%2F31-44_matt_brett.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.6.1</span></p>
<h4>45. <a href="http://henryjones.us/">Henry Jones</a></h4>
<p><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSL03nJ7QJvI%2FAAAAAAAABvE%2FWbmtNTc_KKU%2Fs800%2F31-45_henry_jones.jpg" alt="" /></p>
<p>Wordpress最佳适用版本：<span class="figure-caption">2.1</span></p>
<p><span class="figure-caption">我真的不能告诉你哪里可以下载这些主题，我只能说，这些主题确实是不错的。</span>不过我推荐下载的有：<a href="../../../../../post/10-most-beautiful-looking-linux-desktop.html" rel="bookmark" title="Permanent Link to 10张被誉为最好看的Linux壁纸打包下载">10张被誉为最好看的Linux壁纸打包下载</a>，这些壁纸我用来windows桌面，是不是没有技术含量？</p>
<p><span class="figure-caption">译文地址：<a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html">http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html</a></span>。</p>
<p>本文由<a href="http://www.jianbitou.com">Sonny</a>整理。</p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html" title="这13个Wordpress插件，你安装了吗？">这13个Wordpress插件，你安装了吗？</a></li><li><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html" title="32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a></li><li><a href="http://www.jianbitou.com/post/20_websites-learn-master-css.html" title="20个优秀网站助你征服CSS">20个优秀网站助你征服CSS</a></li><li><a href="http://www.jianbitou.com/post/top-10-photoshop-tutorial-websites.html" title="十大Photoshop教程网站">十大Photoshop教程网站</a></li><li><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html" title="16个优秀网站教你网站设计">16个优秀网站教你网站设计</a></li><li><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html" title="专为女生打造的wordpress主题:pangpang-theme">专为女生打造的wordpress主题:pangpang-theme</a></li><li><a href="http://www.jianbitou.com/post/photo-funia.html" title="Photo Funia，听过？知道？">Photo Funia，听过？知道？</a></li><li><a href="http://www.jianbitou.com/post/one-year-old.html" title="就这样，一年了">就这样，一年了</a></li><li><a href="http://www.jianbitou.com/post/11-free-and-helpful-web-based-tools.html" title="11款完全免费的Web设计工具">11款完全免费的Web设计工具</a></li><li><a href="http://www.jianbitou.com/post/10-creative-advertising-ideas-from-students.html" title="10个10分有创意的平面广告">10个10分有创意的平面广告</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2008. |
<a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html">原文</a> |
<a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html&title=分享：45个Wordpress趣味主题">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/%e4%ba%92%e8%81%94%e7%bd%91" rel="tag">互联网</a>, <a href="http://www.jianbitou.com/post/tag/%e5%88%86%e4%ba%ab" rel="tag">分享</a>, <a href="http://www.jianbitou.com/post/tag/%e5%8d%9a%e5%ae%a2" rel="tag">博客</a>, <a href="http://www.jianbitou.com/post/tag/%e5%9b%be%e7%89%87" rel="tag">图片</a>, <a href="http://www.jianbitou.com/post/tag/%e8%ae%be%e8%ae%a1" rel="tag">设计</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>16个优秀网站教你网站设计</title>
		<link>http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html</link>
		<comments>http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html#comments</comments>
		<pubDate>Wed, 11 Jun 2008 06:06:29 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[资源共享]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[分享]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[资源]]></category>

		<guid isPermaLink="false">http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html</guid>
		<description><![CDATA[大家都希望自己的网站特别又好看，其实自己设计的东西才是自己最喜欢的，网站也是，我相信大家对基本的代码是掌握的，但离成为一个优秀的网站设计师还有一段距离，不要紧，只要有了好的指引，好网站咱们自己也可以设计。Jacob Gube在自己的博客征求读者的意见，总结了16个优秀网站设计网站。可能大家对于外国人的东西不是很喜欢，但无可否认的是，他们有些东西确实值得咱们学习。
以下是这16个网站的简介，希望对大家有帮助：
1、The Best Designs

The Best Designs是一个现成查看高质量XHTML和Flash设计的优秀网站，该网站标记与每一个设计的关键字（例如用加粗、加色、或者是用更深的CSS），让读者更容易得到自己想搜索的东西。
2、CSS Remix

CSS Remix是一个（据他们自己的简介）Web 2.0网站最佳设计的弄潮儿。当然了，该网站也包括一些非Web 2.0的主题设计。CSS Remix的订阅读者超过14,000，在这里，一个设计师可以查阅其他设计师的设计作品，进行深度交流，是一个极品交流平台。
3、CSS Mania

CSS Mania是一个收集基于CSS页面设计的一个网站，收集好之后便进行定期更新。到目前为止，已经收集了10,000+位设计师的作品。可能由于收集的作品过多的缘故，作品质量参差不齐，被不少人抓住把柄。
4、screenfluent

screenfluent是一个介绍漂亮网页设计的网站，特别之处是以模态窗口提供预览，让读者直观体会效果。目前已收集7,000个精选设计，内涵丰富。
5、Screenalicio.us

Screenalicio.us已经有超过 9,800个设计提供参考，而且有给读者打分的功能，5分为满分，所以读者们也可以通过每一个设计的评分来选择性参看。
6、Open Source Web Design

Open Source Web Design一个共享社区，会员可以随时上传自己设计的代码分享给公众。公众下载代码不是无限量免费，1OSWD（不知道这个单位什么意思）的设计以下的下载是免费的。大家可以下载这个网站的设计代码，研究一下。
7、One Page Love

One Page Love是一个基本网页设计的展示馆，展示的内容包括：美丽的，创造性的网页网站和应用程序。类别包括商业、温和、新闻类等等等，包括综合也比较杂。
8、FullSingle

FullSingle与One Page Love一样，是关于单页面设计的网站，网站的每一个页面会出现最新优秀作品精选的简介，告诉你这些设计是关于什么，有什么好之类的。
9、One Page Folios

One Page Folios也是关于单网页设计的，是一个总结单一网页组合的网站设计和开发的网站，里头已有超过800组组合供于参考。
10、We Love WP

对于使用wordpress的blogger来说，这个网站是值得收藏的。We Love WP会分享一些顶级的wordpress外观设计，当然也共享一些漂亮的wordpress主题。
11、CSS Divine

CSS Divine 是一个基于CSS设计的天堂，CSS种量设计齐全，在右侧边栏有用各种颜色做成的Tag，点击就搜索基于你想得到的颜色的CSS设计。类别包括艺术，商业，清洁，及商业的。
12、Design Snack

Design Snack自标：你可以控制设计师的设计。像The Best Designs一样，这也是一个关于XHTML和Flash设计的优秀网站，在这个网站里，你可以以自定义的方式来显示各种设计，对某一个设计投票，或者以颜色为标签来浏览设计。
13、SF art &#38; design portal

SF art &#38; design portal 是一个关于门户网站设计的网站，独特、创新和艺术气质的设计方式是这个网站的特点。你可以按分类，样式，颜色，甚至国家浏览设计。
14、Design Shack

Design Shack是独家提供顶级基于CSS设计的网站，脱颖而出的作品是他们要找的。这个网站也提供教程和设计中的经验教训。
15、CSSloaf

别人收集了好东西，CSSloaf再收集一次，它收集了35个设计网站的好东西，所以大家没必要去别的地方看了。这个网站的特点就是特大展示图，使人一目了然。
16、eduStyle

看于edu就知道这个网站是专门为教育机构而存在的，它专注于为高等教育网站的设计，展示最好的的设计。
如果你对优秀的CSS资源网站感兴趣，这里有《7个最好的网上CSS资源》。
本文由Sonny整理。
相关东东这13个Wordpress插件，你安装了吗？20个优秀网站助你征服CSS32个高质量wordpress主题免费下载分享：45个Wordpress趣味主题7个最好的CSS资源专为女生打造的wordpress主题:pangpang-theme就这样，一年了7个关于Google Chrome的小东东11款完全免费的Web设计工具13个网页设计必备的Firefox扩展
© Sonny for [...]]]></description>
			<content:encoded><![CDATA[<p>大家都希望自己的网站特别又好看，其实自己设计的东西才是自己最喜欢的，网站也是，我相信大家对基本的代码是掌握的，但离成为一个优秀的网站设计师还有一段距离，不要紧，只要有了好的指引，好网站咱们自己也可以设计。<a href="http://sixrevisions.com"><span class="authorInfo">Jacob Gube</span></a>在自己的博客征求读者的意见，总结了<a href="http://sixrevisions.com/web_design/16_sites_web_design_inspiratio/">16个优秀网站设计网站</a>。可能大家对于外国人的东西不是很喜欢，但无可否认的是，他们有些东西确实值得咱们学习。</p>
<p>以下是这16个网站的简介，希望对大家有帮助：</p>
<p>1、<a href="http://www.thebestdesigns.com/" title="The Best Designs - The Best Flash and CSS Web Design - Web Design Awards"><u><b>The Best Designs</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSE9UVAXxB-I%2FAAAAAAAAATw%2FhZdCg-2Wg48%2Fs800%2F1.jpg" alt="" /></a></p>
<p><i>The Best Designs</i>是一个现成查看高质量XHTML和Flash设计的优秀网站，该网站标记与每一个设计的关键字（例如用加粗、加色、或者是用更深的CSS），让读者更容易得到自己想搜索的东西。</p>
<p>2、<a href="http://cssremix.com/" title="CSS Mania"><u><b>CSS Remix</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSE9UWcqb-gI%2FAAAAAAAAAT4%2Fz0M9dD8YlhM%2Fs800%2F2.jpg" alt="" /></a></p>
<p><em>CSS Remix</em>是一个（据他们自己的简介）Web 2.0网站最佳设计的弄潮儿。当然了，该网站也包括一些非Web 2.0的主题设计。<em>CSS Remix</em>的订阅读者超过14,000，在这里，一个设计师可以查阅其他设计师的设计作品，进行深度交流，是一个极品交流平台。</p>
<p>3、<a href="http://cssmania.com/" title="CSS Mania"><u><b>CSS Mania</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSE9UWzCqmhI%2FAAAAAAAAAUA%2F4oTC0JS8JzY%2Fs800%2F3.jpg" alt="" /></a></p>
<p><em>CSS Mania</em>是一个收集基于CSS页面设计的一个网站，收集好之后便进行定期更新。到目前为止，已经收集了10,000+位设计师的作品。可能由于收集的作品过多的缘故，作品质量参差不齐，被不少人抓住把柄。</p>
<p>4、<a href="http://screenfluent.com/" title=" screenfluent | the web's most favorite collection for zeitgeist of screen design"><u><b>screenfluent</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSE9UXkfu9RI%2FAAAAAAAAAUI%2FXovaPgHJ3jY%2Fs800%2F4.jpg" alt="" /></a></p>
<p><em>screenfluent</em>是一个介绍漂亮网页设计的网站，特别之处是以模态窗口提供预览，让读者直观体会效果。目前已收集7,000个精选设计，内涵丰富。</p>
<p>5、<a href="http://www.screenalicious.com/" title="Screenalicio.us - Get inspired!"><u><b>Screenalicio.us</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSE9UYq-7XnI%2FAAAAAAAAAUQ%2Foi_vmz_RQBQ%2Fs800%2F5.jpg" alt="" /></a></p>
<p><em>Screenalicio.us</em>已经有超过 9,800个设计提供参考，而且有给读者打分的功能，5分为满分，所以读者们也可以通过每一个设计的评分来选择性参看。</p>
<p>6、<a href="http://www.oswd.org/" title="Open Source Web Design"><u><b>Open Source Web Design</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSE9UZFsXC6I%2FAAAAAAAAAUY%2FV-LgDu51odw%2Fs800%2F6.jpg" alt="" /></a></p>
<p><em>Open Source Web Design</em>一个共享社区，会员可以随时上传自己设计的代码分享给公众。公众下载代码不是无限量免费，1OSWD（不知道这个单位什么意思）的设计以下的下载是免费的。大家可以下载这个网站的设计代码，研究一下。</p>
<p>7、<a href="http://onepagelove.com/" title="One page website design gallery | One Page Love"><u><b>One Page Love</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSE9UZgb5goI%2FAAAAAAAAAUg%2FWGtQudpQdPk%2Fs800%2F7.jpg" alt="" /></a></p>
<p><em>One Page Love</em>是一个基本网页设计的展示馆，展示的内容包括：美丽的，创造性的网页网站和应用程序。类别包括商业、温和、新闻类等等等，包括综合也比较杂。</p>
<p>8、<a href="http://www.fullsingle.com/" title="FullSingle - Full site Single page"><u><b>FullSingle</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSE9UatpkMII%2FAAAAAAAAAUo%2FdUew_7AXTNg%2Fs800%2F8.jpg" alt="" /></a></p>
<p><i>FullSingle</i>与<em>One Page Love</em>一样，是关于单页面设计的网站，网站的每一个页面会出现最新优秀作品精选的简介，告诉你这些设计是关于什么，有什么好之类的。</p>
<p>9、<a href="http://onepagefolios.com/" title="One Page Folios"><u><b>One Page Folios</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSE9UbZFvNnI%2FAAAAAAAAAUw%2F9z10kja3zZQ%2Fs800%2F9.jpg" alt="" /></a></p>
<p><em>One Page Folios</em>也是关于单网页设计的，是一个总结单一网页组合的网站设计和开发的网站，里头已有超过800组组合供于参考。</p>
<p>10、<a href="http://welovewp.com/" title="We Love WP | WordPress Website and Blog Design Gallery"><u><b>We Love WP</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSE9Ud_k0a4I%2FAAAAAAAAAU4%2FDT-gD6AFdP4%2Fs800%2F10.jpg" alt="" /></a></p>
<p>对于使用wordpress的blogger来说，这个网站是值得收藏的。<em>We Love WP</em>会分享一些顶级的wordpress外观设计，当然也共享一些漂亮的wordpress主题。</p>
<p>11、<a href="http://cssdivine.com/" title="CSS Divine Website Showcase Gallery"><u><b>CSS Divine</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSE9UfPARqRI%2FAAAAAAAAAVA%2F9YHAYHxeYZU%2Fs800%2F11.jpg" alt="" /></a></p>
<p><em>CSS Divine </em>是一个基于CSS设计的天堂，CSS种量设计齐全，在右侧边栏有用各种颜色做成的Tag，点击就搜索基于你想得到的颜色的CSS设计。类别包括艺术，商业，清洁，及商业的。</p>
<p>12、<a href="http://www.designsnack.com/" title="Design Snack / The design showcase that you control / CSS, XHTML and Flash Inspiration Gallery"><u><b>Design Snack</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2FSonny.zhang87%2FSE9Uf8MOzYI%2FAAAAAAAAAVI%2FrDueL9p6BA4%2Fs800%2F12.jpg" alt="" /></a></p>
<p><em>Design Snack</em>自标：你可以控制设计师的设计。像<i>The Best Designs</i>一样，这也是一个关于XHTML和Flash设计的优秀网站，在这个网站里，你可以以自定义的方式来显示各种设计，对某一个设计投票，或者以颜色为标签来浏览设计。</p>
<p>13、<a href="http://www.strangefruits.nl/" title="SF art &amp; design portal"><u><b>SF art &amp; design portal</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2FSonny.zhang87%2FSE9UhLajFnI%2FAAAAAAAAAVQ%2Fn8FLjSMkAyo%2Fs800%2F13.jpg" alt="" /></a></p>
<p><em>SF art &amp; design portal</em> 是一个关于门户网站设计的网站，独特、创新和艺术气质的设计方式是这个网站的特点。你可以按分类，样式，颜色，甚至国家浏览设计。</p>
<p>14、<a href="http://designshack.co.uk/gallery/all/" title="CSS Gallery | Design Shack"><u><b>Design Shack</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSE9UiC6mLcI%2FAAAAAAAAAVY%2F5NlJgm3MhFM%2Fs800%2F14.jpg" alt="" /></a></p>
<p><em>Design Shack</em>是独家提供顶级基于CSS设计的网站，脱颖而出的作品是他们要找的。这个网站也提供教程和设计中的经验教训。</p>
<p>15、<a href="http://www.cssloaf.com/"><u><b>CSSloaf</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2FSonny.zhang87%2FSE9Uim4gYJI%2FAAAAAAAAAVg%2F4lKU9CKUO9s%2Fs800%2F15.jpg" alt="" /></a></p>
<p>别人收集了好东西，<em>CSSloaf</em>再收集一次，它收集了35个设计网站的好东西，所以大家没必要去别的地方看了。这个网站的特点就是特大展示图，使人一目了然。</p>
<p>16、<a href="http://www.edustyle.net/" title="eduStyle || Inspiration for Campus Web Designers"><u><b>eduStyle</b></u></a></p>
<p><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2FSonny.zhang87%2FSE9UjrAS6uI%2FAAAAAAAAAVo%2FkWZXdqZvvmU%2Fs800%2F16.jpg" alt="" /></a></p>
<p>看于edu就知道这个网站是专门为教育机构而存在的，它专注于为高等教育网站的设计，展示最好的的设计。</p>
<p>如果你对优秀的CSS资源网站感兴趣，这里有<a href="http://www.jianbitou.com/post/7cssresources.html">《7个最好的网上CSS资源》</a>。</p>
<p>本文由<a href="http://www.jianbitou.com">Sonny</a>整理。</p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html" title="这13个Wordpress插件，你安装了吗？">这13个Wordpress插件，你安装了吗？</a></li><li><a href="http://www.jianbitou.com/post/20_websites-learn-master-css.html" title="20个优秀网站助你征服CSS">20个优秀网站助你征服CSS</a></li><li><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html" title="32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a></li><li><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html" title="分享：45个Wordpress趣味主题">分享：45个Wordpress趣味主题</a></li><li><a href="http://www.jianbitou.com/post/7cssresources.html" title="7个最好的CSS资源">7个最好的CSS资源</a></li><li><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html" title="专为女生打造的wordpress主题:pangpang-theme">专为女生打造的wordpress主题:pangpang-theme</a></li><li><a href="http://www.jianbitou.com/post/one-year-old.html" title="就这样，一年了">就这样，一年了</a></li><li><a href="http://www.jianbitou.com/post/7-top-tips-and-resources-for-google-chrome.html" title="7个关于Google Chrome的小东东">7个关于Google Chrome的小东东</a></li><li><a href="http://www.jianbitou.com/post/11-free-and-helpful-web-based-tools.html" title="11款完全免费的Web设计工具">11款完全免费的Web设计工具</a></li><li><a href="http://www.jianbitou.com/post/13-amazing-firefox-add-ons-to-make-designers-lives-easier.html" title="13个网页设计必备的Firefox扩展">13个网页设计必备的Firefox扩展</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2008. |
<a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html">原文</a> |
<a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html&title=16个优秀网站教你网站设计">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/css" rel="tag">CSS</a>, <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/%e4%ba%92%e8%81%94%e7%bd%91" rel="tag">互联网</a>, <a href="http://www.jianbitou.com/post/tag/%e5%88%86%e4%ba%ab" rel="tag">分享</a>, <a href="http://www.jianbitou.com/post/tag/%e5%8d%9a%e5%ae%a2" rel="tag">博客</a>, <a href="http://www.jianbitou.com/post/tag/%e8%b5%84%e6%ba%90" rel="tag">资源</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html/feed</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>本地测试：Zblog转Wordpress</title>
		<link>http://www.jianbitou.com/post/zblog_to_wordpress.html</link>
		<comments>http://www.jianbitou.com/post/zblog_to_wordpress.html#comments</comments>
		<pubDate>Fri, 21 Mar 2008 12:44:25 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[资源共享]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[zblog]]></category>
		<category><![CDATA[互联网]]></category>
		<category><![CDATA[分享]]></category>

		<guid isPermaLink="false">http://www.jianbitou.com/post/zblog_to_wordpress.html</guid>
		<description><![CDATA[有人说我换了主题博客没以前好看了，我也是这样觉得的。不过这个主题是纯CSS，没有一张图片，打开速度是快多了，我不仅是换了主题，还换了服务器，换了博客后台，这是一个大工程，但在线转换我用了不到一个小时，确实很快。我在自己的电脑测试了很久才将用钱换了个虚拟主机，这次转移确实是完美的，链接一个都没丢失。 Google上关于转移的文章很多了，但好像没有一篇是完整介绍本地Zblog转换Wordpress的，这篇东西其实也没什么学问，不过可以让想转 Wordpress的朋友在转的省点时间。]]></description>
			<content:encoded><![CDATA[<p>有人说我换了主题博客没以前好看了，我也是这样觉得的。不过这个主题是纯CSS，没有一张图片，打开速度是快多了，我不仅是换了主题，还换了服务器，换了博客后台， 这是一个大工程，但在线转换我用了不到一个小时，确实很快。我在自己的电脑测试了很久才将用钱换了个虚拟主机，这次转移确实是完美的，链接一个都没丢失。Google上关于转移的文章很多了，但好像没有一篇是完整介绍本地Zblog转换Wordpress的，这篇东西其实也没什么学问，不过可以让想转Wordpress的朋友省点时间。</p>
<p>第一步要下一个叫xampplite的软件包，官方有两种格式，一是ZIP的，一是EXE的，相比之下安装形的EXE格式小得多，建议下EXE的，<a href="http://www.apachefriends.org/en/xampp-windows.html"><u><strong>下载能用的xampplite</strong></u></a>。为什么要下这个软件包呢？因为WP要在apache环境下运行，而且数据库是MySQL，这个软件包安装后就会集成所有环境。安装过程其实就是解压缩的过程（如果下载的是ZIP格式的可省略这一步），完成后就是一个文件夹，我们只需要先后运行两个东东，一个叫setup_xampp.bat，另一个叫xampp-control.exe，看下图：</p>
<p style="text-align: center;"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2F_Npc-jGyPTWo%2FSjkQ5UgvkMI%2FAAAAAAAAEPs%2FD5IULN2RVL4%2Fs400%2F1.jpg" alt="" /></p>
<p>运行setup_xampp.bat，瞬间完成，按Enter结束，接着运行xampp-control.exe，将Apache和MySQL Start起来，如图：</p>
<p style="text-align: center;"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2F_Npc-jGyPTWo%2FSjkQ5tv_GlI%2FAAAAAAAAEPw%2FIWLeWNlq4Lo%2Fs800%2F2.jpg" alt="" /></p>
<p>这样就完成了本地WP本地的安装环境，还有一点就是与本地安装了IIS与否没有关系，如果担心有端口冲突，可以把IIS卸载了。  下一步就是要准备Zblog的数据库了，我用的是月光博客编写的插件movabletype，在Zblog官方论坛有下载，建议下载最新版，运行很简单，将该插件解压缩之后下传Zblog的plugins目录下，然后插件管理就行了，运行过程有可能出错，可能会提示在某asp找不到某行，不要紧，我们将指向这一行的那一段代码删除就行了。成功之后就会提示下载一个movabletype.asp文件，这个就是数据库（论坛有更详细说明），这样数据库也准备好了。  第三步就是在地安装Wordpress了，安装前得先给wp创建一个数据库，在浏览器（就好是火狐）键入http://localhost/phpmyadmin/来创建数据库，名字自己定，可以直接命名为wordpress，而我定名为jianbitou，这个名字正式安装wp时要用上，所以不要起什么特别的名字，类型是utf8_general_ci（如下图），按&ldquo;创建&rdquo;，数据库创建完成。</p>
<p style="text-align: center;"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2F_Npc-jGyPTWo%2FSjkQ5uYOLkI%2FAAAAAAAAEP0%2Fbbr7LBWOSeo%2Fs400%2F3.jpg" alt="" /></p>
<p style="text-align: left;">下载wordpress安装包，解压缩之后将整个文件夹放进本地的htdocs目录，然后在浏览器地址栏键入http://localhost/wordpress/，正式开始安装了，第一个界面是创建一个就wp-config.php的文件，我们按照提示创建就行了，DB_NAME（填刚才命名数据库的那个名字，例如wordpress），DB_USER（填root），DB_PASSWORD（密码为空），然后下一步就行了，马上就安装完成，获得密码后以admin身份登录后台，如下是本地尖笔头的后台：</p>
<p style="text-align: center;"><img src="http://www.jianbitou.info/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2F_Npc-jGyPTWo%2FSjkQ5kpBiMI%2FAAAAAAAAEP4%2FOyei_DOcEFU%2Fs800%2F4.jpg" alt="" /></p>
<p>然后就要导入数据，管理&mdash;&mdash;导入&mdash;&mdash;Movable Type和Typepad，将从Zblog导出的movabletype.asp导进去，整个转移过程就完成了。  然后我们可以找自己喜欢的主题，好像我就找了这个，确定主题之后就要找插件了，我现在装了不到20个插件，都是在本地调试好然后整个文件夹上传上去。还有就是怎样保住连接的问题，首先要求服务器支持url rewrite（本地是不支持的），然后像我这样只要改掉一个地方就行了：设置&mdash;&mdash;永久链接&mdash;&mdash;自定义&mdash;&mdash;/post/%postname%.html，这是因为我以前在Zblog里都是自定义文章名字的，所以这次简单一改永久链接就行。  总的来说，本地测试运比在线测试快，当我们测试好了之后，可以整个文件夹整个文件夹一起的上传到服务器，节省的是时间，也可以熟悉一下wp后台，是个不错的做法。<a href="http://localhost/wordpress/wp-admin/admin.php?import=mt" title="从 Movable Type 或 Typepad 中导入日志和评论"><strong> </strong></a></p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html" title="这13个Wordpress插件，你安装了吗？">这13个Wordpress插件，你安装了吗？</a></li><li><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html" title="32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a></li><li><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html" title="分享：45个Wordpress趣味主题">分享：45个Wordpress趣味主题</a></li><li><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html" title="16个优秀网站教你网站设计">16个优秀网站教你网站设计</a></li><li><a href="http://www.jianbitou.com/post/experiences-of-making-wordprss-theme.html" title="制作wordpress主题之教训与经验">制作wordpress主题之教训与经验</a></li><li><a href="http://www.jianbitou.com/post/top-10-web-platforms-of-2008.html" title="2008年度10大web平台">2008年度10大web平台</a></li><li><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html" title="专为女生打造的wordpress主题:pangpang-theme">专为女生打造的wordpress主题:pangpang-theme</a></li><li><a href="http://www.jianbitou.com/post/photo-funia.html" title="Photo Funia，听过？知道？">Photo Funia，听过？知道？</a></li><li><a href="http://www.jianbitou.com/post/one-year-old.html" title="就这样，一年了">就这样，一年了</a></li><li><a href="http://www.jianbitou.com/post/7-top-tips-and-resources-for-google-chrome.html" title="7个关于Google Chrome的小东东">7个关于Google Chrome的小东东</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2008. |
<a href="http://www.jianbitou.com/post/zblog_to_wordpress.html">原文</a> |
<a href="http://www.jianbitou.com/post/zblog_to_wordpress.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/zblog_to_wordpress.html&title=本地测试：Zblog转Wordpress">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/zblog" rel="tag">zblog</a>, <a href="http://www.jianbitou.com/post/tag/%e4%ba%92%e8%81%94%e7%bd%91" rel="tag">互联网</a>, <a href="http://www.jianbitou.com/post/tag/%e5%88%86%e4%ba%ab" rel="tag">分享</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/zblog_to_wordpress.html/feed</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>“尖笔头”会长成怎么样？</title>
		<link>http://www.jianbitou.com/post/86.html</link>
		<comments>http://www.jianbitou.com/post/86.html#comments</comments>
		<pubDate>Sun, 24 Feb 2008 05:35:16 +0000</pubDate>
		<dc:creator>Sonny</dc:creator>
				<category><![CDATA[尖笔头下]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[zblog]]></category>
		<category><![CDATA[博客]]></category>

		<guid isPermaLink="false">http://sonny87.host4.meyu.net/post/%e2%80%9c%e5%b0%96%e7%ac%94%e5%a4%b4%e2%80%9d%e4%bc%9a%e9%95%bf%e6%88%90%e6%80%8e%e4%b9%88%e6%a0%b7%ef%bc%9f.html</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160;&#160;&#160;&#160; 从家里回到学校这几天来，很忙碌。<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; 一天坐在电脑的时间是14小时，其余10小时是用来睡觉了，你可能会想到那我是不是不用吃饭了，我有吃饭的，不用担心。
]]></description>
			<content:encoded><![CDATA[<p>从家里回到学校这几天来，很忙碌。<br />
一天坐在电脑的时间是14小时，其余10小时是用来睡觉了，你可能会想到那我是不是不用吃饭了，我有吃饭的，不用担心。</p>
<p>为什么这么忙呢？当然是因为博客的问题了，我想换服务器，顺便把博客后台也换了，换成wordpress。不过我想先以自己的电脑为服务器测试一下，结果遇上有很多问题。<br />
先是不知道哪里出错了，自己的主机成不了服务器(想成为支持PHP的服务器，不是那么容易的)，后来还是解决了。其实我用时间最多的是用在数据库的导入与导出上，后来也成功了，不过我明白了一件事，要做到完美确实很难。对于数据库，我只打开过microsoft access，而对于mysql，见到就怕。因为什么都不懂，花了很多时间搜索。<br />
本来我想着为保住搜索引擎的链接，要把自定义的url保留下来，不过今天我终于觉得，搜索引擎的流量已经不多了，失去了也不损失什么东西。不过要开始认识php，又是一个不小的工程。<br />
如果从本地把zblog完美转移到wordpress，我还没用上真正完美的方法，不要紧，还有时间测试。<br />
最后我们来看看“尖笔头”的样子。<br />
<a href="http://www.jianbitou.com"><img src="http://218.64.245.18:8080/1/2008-2-27/20080227204636769434.jpg" border="0" height="385" width="528" /></a><br />
说真的这个主题我忘了从哪找的，不过我是挺喜欢。很简洁，如无意外，“尖笔头”以后就是这样子的了。</p>
<h3  class="related_post_title">相关东东</h3><ul class="related_post"><li><a href="http://www.jianbitou.com/post/use-wordpress-to-build-a-portal-website.html" title="用wordpress打造门户网站">用wordpress打造门户网站</a></li><li><a href="http://www.jianbitou.com/post/a-wordpress-theme-for-girls.html" title="专为女生打造的wordpress主题:pangpang-theme">专为女生打造的wordpress主题:pangpang-theme</a></li><li><a href="http://www.jianbitou.com/post/one-year-old.html" title="就这样，一年了">就这样，一年了</a></li><li><a href="http://www.jianbitou.com/post/13-wordpress-plugins-you-probably-dont-use-but-should.html" title="这13个Wordpress插件，你安装了吗？">这13个Wordpress插件，你安装了吗？</a></li><li><a href="http://www.jianbitou.com/post/32-free-high-quality-wordpress-themes.html" title="32个高质量wordpress主题免费下载">32个高质量wordpress主题免费下载</a></li><li><a href="http://www.jianbitou.com/post/45-beautiful-wordpress-designs.html" title="分享：45个Wordpress趣味主题">分享：45个Wordpress趣味主题</a></li><li><a href="http://www.jianbitou.com/post/16_sites_web_design_inspiratio.html" title="16个优秀网站教你网站设计">16个优秀网站教你网站设计</a></li><li><a href="http://www.jianbitou.com/post/zblog_to_wordpress.html" title="本地测试：Zblog转Wordpress">本地测试：Zblog转Wordpress</a></li><li><a href="http://www.jianbitou.com/post/my-university.html" title="启动“我的大学”征文活动">启动“我的大学”征文活动</a></li><li><a href="http://www.jianbitou.com/post/microblog.html" title="微博客现象">微博客现象</a></li></ul><hr />
<p>© Sonny for <a href="http://www.jianbitou.com">尖笔头</a>, 2008. |
<a href="http://www.jianbitou.com/post/86.html">原文</a> |
<a href="http://www.jianbitou.com/post/86.html#comments">添加评论</a> |
添加至
<a href="http://del.icio.us/post?url=http://www.jianbitou.com/post/86.html&title=“尖笔头”会长成怎么样？">del.icio.us</a>
<br/>
Post tags: <a href="http://www.jianbitou.com/post/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.jianbitou.com/post/tag/zblog" rel="tag">zblog</a>, <a href="http://www.jianbitou.com/post/tag/%e5%8d%9a%e5%ae%a2" rel="tag">博客</a><br/><a href="http://www.askform.cn/24963-66771.aspx" target="_blank"><span style="color: rgb(178, 34, 34);">做一下尖笔头读者调查问卷咯</span></a>|<a href="https://www.twitter.com/sonny87">Twitter</a>|<a href="http://t.sina.com.cn/1651551285">新浪微博</a>|<a href="http://www.jianbitou.com/post/my-university.html">“我的大学”征文活动</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.jianbitou.com/post/86.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
