<?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>The Princess Diaries &#187; wordpress</title>
	<atom:link href="http://onezhou.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://onezhou.com</link>
	<description>熊家的公主</description>
	<lastBuildDate>Mon, 12 Sep 2011 22:55:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>wordpress theme framework</title>
		<link>http://onezhou.com/2009/06/wordpress-theme-framework/</link>
		<comments>http://onezhou.com/2009/06/wordpress-theme-framework/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 11:22:32 +0000</pubDate>
		<dc:creator>Sue Zhou</dc:creator>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onezhou.com/?p=419</guid>
		<description><![CDATA[最近一直在折腾Wordpress，一个星期了，开始厌倦了。

在找一个合适的主题，可是合适怎么定义却很空泛。看到一些很炫的主题又不是太如意，只有下载下来再改，去掉繁枝茂叶，留下个光秃秃的主干，辛苦调试完了后又突然不喜欢这个主题了，于是又推翻重来。

找了一个新的主题换上了，Coffee de[......]<p class='read-more'><a href='http://onezhou.com/2009/06/wordpress-theme-framework/'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>最近一直在折腾Wordpress，一个星期了，开始厌倦了。</p>
<p>在找一个合适的主题，可是合适怎么定义却很空泛。看到一些很炫的主题又不是太如意，只有下载下来再改，去掉繁枝茂叶，留下个光秃秃的主干，辛苦调试完了后又突然不喜欢这个主题了，于是又推翻重来。</p>
<p>找了一个新的主题换上了，Coffee de[......]
<p class='read-more'><a href='http://onezhou.com/2009/06/wordpress-theme-framework/'>阅读全文</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onezhou.com/2009/06/wordpress-theme-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Code Markup: a WordPress plugin</title>
		<link>http://onezhou.com/2009/06/code-markup-a-wordpress-plugin/</link>
		<comments>http://onezhou.com/2009/06/code-markup-a-wordpress-plugin/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 10:59:16 +0000</pubDate>
		<dc:creator>Sue Zhou</dc:creator>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onezhou.com/?p=413</guid>
		<description><![CDATA[厌烦了贴代码时跟wordpress自动格式化没完没了的较劲，一遍又一遍的更新，然后去主页看效果。于是用了插件，简单明了。

不常贴代码，应该说也就是最近两天才开始贴的，这两天一直在温故知新和创新，主要是为了记录点啥备忘 。

插件很简单，在HTML模式下编辑。格式如下：

&#60;pre[......]<p class='read-more'><a href='http://onezhou.com/2009/06/code-markup-a-wordpress-plugin/'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>厌烦了贴代码时跟wordpress自动格式化没完没了的较劲，一遍又一遍的更新，然后去主页看效果。于是用了插件，简单明了。</p>
<p>不常贴代码，应该说也就是最近两天才开始贴的，这两天一直在温故知新和创新，主要是为了记录点啥备忘 。</p>
<p>插件很简单，在HTML模式下编辑。格式如下：</p>
<p>&lt;pre[......]
<p class='read-more'><a href='http://onezhou.com/2009/06/code-markup-a-wordpress-plugin/'>阅读全文</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onezhou.com/2009/06/code-markup-a-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress引号问题</title>
		<link>http://onezhou.com/2009/06/wordpress-quote-fix/</link>
		<comments>http://onezhou.com/2009/06/wordpress-quote-fix/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 12:44:34 +0000</pubDate>
		<dc:creator>Sue Zhou</dc:creator>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onezhou.com/?p=396</guid>
		<description><![CDATA[Google之结果，解决在Wordpress贴代码时英文的单引号双引号被替换成中文的左右引号的问题。

修改/wp-includes/目录里的formatting.php文件，找到以下代码：(行57-60)

<pre><code>// static strings
$curl = str_replace($static_characters, $static_replacements, $curl);
// regular expressions
$curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);</code></pre>

将以上未屏蔽的两行，也屏蔽掉，如下：

<pre><code>// static strings
// $curl = str_replace($static_characters, $static_replacements, $curl);
// regular expressions
// $curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);</code></pre>

保存修改即可。

[......]<p class='read-more'><a href='http://onezhou.com/2009/06/wordpress-quote-fix/'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>Google之结果，解决在Wordpress贴代码时英文的单引号双引号被替换成中文的左右引号的问题。</p>
<p>修改/wp-includes/目录里的formatting.php文件，找到以下代码：(行57-60)</p>
<p><code>// static strings<br />
$curl = str_replace($s[......]</code>
<p class='read-more'><a href='http://onezhou.com/2009/06/wordpress-quote-fix/'>阅读全文</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onezhou.com/2009/06/wordpress-quote-fix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress建多语言网站</title>
		<link>http://onezhou.com/2009/02/multilingual-wordpress-plugins/</link>
		<comments>http://onezhou.com/2009/02/multilingual-wordpress-plugins/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 21:45:00 +0000</pubDate>
		<dc:creator>Sue Zhou</dc:creator>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onezhou.com/?p=345</guid>
		<description><![CDATA[<a href="http://wordpress.org/extend/plugins/qtranslate/" target="_blank"><strong>qTranslate</strong></a>，基于Wordpress的一个插件，可以用来建造多语言的网站。

作者是个中国小伙，秦谦，看了其个人资料发现自己虚长了半岁没啥成就，汗颜呀~

搜到这个插件的时候是心花怒放，对该插件的评价就是——帅呆了！

Wordpress的官网描述分类就是：Manage mult[......]<p class='read-more'><a href='http://onezhou.com/2009/02/multilingual-wordpress-plugins/'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/qtranslate/" target="_blank"><strong>qTranslate</strong></a>，基于Wordpress的一个插件，可以用来建造多语言的网站。</p>
<p>作者是个中国小伙，秦谦，看了其个人资料发现自己虚长了半岁没啥成就，汗颜呀~</p>
<p>搜到这个插件的时候是心花怒放，对该插件的评价就是——帅呆了！</p>
<p>WordPress的官网描述分类就是：Manage mult[......]
<p class='read-more'><a href='http://onezhou.com/2009/02/multilingual-wordpress-plugins/'>阅读全文</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onezhou.com/2009/02/multilingual-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>NextGEN Gallery</title>
		<link>http://onezhou.com/2008/10/nextgen-gallery/</link>
		<comments>http://onezhou.com/2008/10/nextgen-gallery/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 15:46:34 +0000</pubDate>
		<dc:creator>Sue Zhou</dc:creator>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onezhou.com/?p=253</guid>
		<description><![CDATA[继续研究Wordpress的扩展。今天的话题是——弄个相册玩玩！~

以幻灯片的形式在右边的侧边栏显示就好了。

找到了NextGEN Gallery，可能是目前最强大的插件了！

还没来得及继续研究，下回再说了~

参考链接：

<a href="http://wordpress.org/extend/plugins/nextgen-gallery/" target="_blank">http://wordpress.org/ext[......]</a><p class='read-more'><a href='http://onezhou.com/2008/10/nextgen-gallery/'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>继续研究Wordpress的扩展。今天的话题是——弄个相册玩玩！~</p>
<p>以幻灯片的形式在右边的侧边栏显示就好了。</p>
<p>找到了NextGEN Gallery，可能是目前最强大的插件了！</p>
<p>还没来得及继续研究，下回再说了~</p>
<p>参考链接：</p>
<p><a href="http://wordpress.org/extend/plugins/nextgen-gallery/" target="_blank">http://wordpress.org/ext[......]</a>
<p class='read-more'><a href='http://onezhou.com/2008/10/nextgen-gallery/'>阅读全文</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onezhou.com/2008/10/nextgen-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Audio Widget</title>
		<link>http://onezhou.com/2008/10/google-audio-widget/</link>
		<comments>http://onezhou.com/2008/10/google-audio-widget/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 13:57:15 +0000</pubDate>
		<dc:creator>Sue Zhou</dc:creator>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onezhou.com/?p=248</guid>
		<description><![CDATA[先强烈鄙视一下在to do list上写了数月之久还不采取行动的某熊。

<strong>起因：</strong>某熊想在自己的blog上添加背景音乐。加之我今天很闲，很懒，总而言之不想好好干活。

<strong>初始需求：</strong>
<ul>
	<li>简洁，越简单明了越好。</li>
	<li>适用于Wordpress，以widget/plugin形式出现的最好。</li>
	<li>皮[......]</li></ul><p class='read-more'><a href='http://onezhou.com/2008/10/google-audio-widget/'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>先强烈鄙视一下在to do list上写了数月之久还不采取行动的某熊。</p>
<p><strong>起因：</strong>某熊想在自己的blog上添加背景音乐。加之我今天很闲，很懒，总而言之不想好好干活。</p>
<p><strong>初始需求：</strong></p>
<ul>
<li>简洁，越简单明了越好。</li>
<li>适用于Wordpress，以widget/plugin形式出现的最好。</li>
<li>皮[......]</li>
</ul>
<p class='read-more'><a href='http://onezhou.com/2008/10/google-audio-widget/'>阅读全文</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onezhou.com/2008/10/google-audio-widget/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6</title>
		<link>http://onezhou.com/2008/07/wordpress-26/</link>
		<comments>http://onezhou.com/2008/07/wordpress-26/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 15:13:23 +0000</pubDate>
		<dc:creator>Sue Zhou</dc:creator>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onezhou.com/blog/?p=185</guid>
		<description><![CDATA[http://wordpress.org/development/2008/07/wordpress-26-tyner/]]></description>
			<content:encoded><![CDATA[<p>http://wordpress.org/development/2008/07/wordpress-26-tyner/</p>
]]></content:encoded>
			<wfw:commentRss>http://onezhou.com/2008/07/wordpress-26/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WP升级记</title>
		<link>http://onezhou.com/2008/04/wp-upgrade/</link>
		<comments>http://onezhou.com/2008/04/wp-upgrade/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 09:56:51 +0000</pubDate>
		<dc:creator>Sue Zhou</dc:creator>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onezhou.com/blog/?p=153</guid>
		<description><![CDATA[累死累活了二十来天，终于眼瞅着今天开始闲一点了。老天终于开始疼我了。

准备把我的WordPress从半年前的2.2的版本升级到现在的2.5版本。以前一直没有大的变化，也就基于不影响使用的理由一直不愿意升级。现在由于2.5比起早起版本进行了重大改革，基本上后台管理全部换新，本公主没理由把自己的s[......]<p class='read-more'><a href='http://onezhou.com/2008/04/wp-upgrade/'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>累死累活了二十来天，终于眼瞅着今天开始闲一点了。老天终于开始疼我了。</p>
<p>准备把我的WordPress从半年前的2.2的版本升级到现在的2.5版本。以前一直没有大的变化，也就基于不影响使用的理由一直不愿意升级。现在由于2.5比起早起版本进行了重大改革，基本上后台管理全部换新，本公主没理由把自己的s[......]
<p class='read-more'><a href='http://onezhou.com/2008/04/wp-upgrade/'>阅读全文</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onezhou.com/2008/04/wp-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP编码问题</title>
		<link>http://onezhou.com/2007/08/wp-encode-problem/</link>
		<comments>http://onezhou.com/2007/08/wp-encode-problem/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 10:10:02 +0000</pubDate>
		<dc:creator>Sue Zhou</dc:creator>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onezhou.com/blog/?p=6</guid>
		<description><![CDATA[刚刚试用WordPress，发表了第一篇中文blog。初步结果：显示中文不成功，全部显示为问号。

研究了WordPress的中文论坛，发现所谓的中文版也只是个汉化包，而且仅仅汉化后台界面，没任何实质的意义。英文目前不影响我的阅读，哪位不熟悉英文的主来了，自己捉摸着哪个按钮是啥用就OK了。日后再[......]<p class='read-more'><a href='http://onezhou.com/2007/08/wp-encode-problem/'>阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>刚刚试用WordPress，发表了第一篇中文blog。初步结果：显示中文不成功，全部显示为问号。</p>
<p>研究了WordPress的中文论坛，发现所谓的中文版也只是个汉化包，而且仅仅汉化后台界面，没任何实质的意义。英文目前不影响我的阅读，哪位不熟悉英文的主来了，自己捉摸着哪个按钮是啥用就OK了。日后再[......]
<p class='read-more'><a href='http://onezhou.com/2007/08/wp-encode-problem/'>阅读全文</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onezhou.com/2007/08/wp-encode-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

