<?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://yozor.com/tags/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://yozor.com</link>
	<description>一次做好一件事</description>
	<lastBuildDate>Sat, 20 Feb 2010 17:19:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>安装插件WordPress Related Posts</title>
		<link>http://yozor.com/articles/install_plug_wordpress_related_posts.html</link>
		<comments>http://yozor.com/articles/install_plug_wordpress_related_posts.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 07:19:47 +0000</pubDate>
		<dc:creator>YZ</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://yozor.com/?p=84</guid>
		<description><![CDATA[安装了Denis的相关日志插件WordPress Related Posts， 还是蛮好用的。
]]></description>
			<content:encoded><![CDATA[<p>安装了Denis的相关日志插件<a href="http://fairyfish.net/2007/09/12/wordpress-23-related-posts-plugin/" target="_blank">WordPress Related Posts</a>， 还是蛮好用的。</p>
]]></content:encoded>
			<wfw:commentRss>http://yozor.com/articles/install_plug_wordpress_related_posts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>测试：用ScribeFire在Firefox上发表</title>
		<link>http://yozor.com/articles/using_scribefire_to_pulic.html</link>
		<comments>http://yozor.com/articles/using_scribefire_to_pulic.html#comments</comments>
		<pubDate>Wed, 16 Sep 2009 03:08:41 +0000</pubDate>
		<dc:creator>YZ</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[scribefire]]></category>

		<guid isPermaLink="false">http://yozor.com/articles/using_scribefire_to_pulic.html</guid>
		<description><![CDATA[测试在Firefox上用ScribeFire插件发表文章。
]]></description>
			<content:encoded><![CDATA[<p>测试在Firefox上用ScribeFire插件发表文章。</p>
]]></content:encoded>
			<wfw:commentRss>http://yozor.com/articles/using_scribefire_to_pulic.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress 修改手记</title>
		<link>http://yozor.com/articles/record_of_wordpress_modification.html</link>
		<comments>http://yozor.com/articles/record_of_wordpress_modification.html#comments</comments>
		<pubDate>Wed, 26 Nov 2008 15:37:39 +0000</pubDate>
		<dc:creator>YZ</dc:creator>
				<category><![CDATA[站点日志]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[修改手记]]></category>

		<guid isPermaLink="false">http://yozor.com/?p=72</guid>
		<description><![CDATA[虽然对写程序一窍不通，偶尔也依照别人的文章，对Wordpress的进行一些微小改动，包括更改主题、插件以及Wordpress程序本身。
为了使以后更换主题，或者升级插件、升级Wordpress程序后，仍然记得需要修改哪些地方，将所有改动记录下来，并随时更新。
1. 增加留言本页面模板文件和留言显示文件。
a. 进入目录/wp-content/themes/purecss(模板名)/；
b. 复制single.php并重命名为guestbook.php；
c. 打开guestbook.php，找到如下语句：

&#60;!--p get_header&#40;&#41;;--&#62;

在此语句之前加上如下模板标识语句：

&#60;!--p  /*   Template Name: 留言簿     */ --&#62;

d. 找到如下语句:

&#60;!--p comments_template&#40;&#41;;--&#62;

改成：

&#60;!--p comments_template&#40;'/gbcomments.php'&#41;;--&#62;


e. 找到如下一段：

&#60;div id=&#34;post-&#38;lt;?php the_ID(); ?&#38;gt;&#34; class=&#34;post&#34;&#62;
&#60;h2 class=&#34;pagetitle&#34;&#62;&#60;!--p the_title&#40;&#41;;--&#62;&#60;/h2&#62;
&#60;small class=&#34;subtitle&#34;&#62;&#60;!--p the_time&#40;'m.d.Y'&#41;--&#62; by &#60;!--p the_author&#40;&#41;--&#62;&#60;!--p edit_post_link&#40;'Edit', ' - ', ''&#41;;--&#62; - &#60;a href=&#34;#respond&#34;&#62;&#60;!--p comments_number&#40;'0 Comment', '1 Comment', '% Comments'&#41;;--&#62;&#60;/a&#62;
Posted in &#60;!--p the_category&#40;', '&#41; ?&#62;&#60;/small&#62;
&#60;div class=&#34;entry&#34;&#62;&#60;/div&#62;


同时，将：“'0 Comment', [...]]]></description>
			<content:encoded><![CDATA[<p>虽然对写程序一窍不通，偶尔也依照别人的文章，对Wordpress的进行一些微小改动，包括更改主题、插件以及Wordpress程序本身。</p>
<p>为了使以后更换主题，或者升级插件、升级Wordpress程序后，仍然记得需要修改哪些地方，将所有改动记录下来，并随时更新。</p>
<h3><span style="color: #ff00ff;">1. 增加留言本页面模板文件和留言显示文件。</span></h3>
<p><span style="color: #0000ff;">a</span>. 进入目录/wp-content/themes/purecss(模板名)/；</p>
<p><span style="color: #0000ff;">b</span>. 复制single.php并重命名为guestbook.php；</p>
<p><span style="color: #0000ff;">c</span>. 打开guestbook.php，找到如下语句：<span id="more-72"></span></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span>p get_header<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;</span></pre></div></div>

<p>在此语句之前加上如下模板标识语句：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span>p  <span style="color: #666666; font-style: italic;">/*   Template Name: 留言簿     */</span> <span style="color: #339933;">--&gt;</span></pre></div></div>

<p><span style="color: #0000ff;">d</span>. 找到如下语句:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span>p comments_template<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;</span></pre></div></div>

<p>改成：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span>p comments_template<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/gbcomments.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;</span></pre></div></div>

<p><!--more--><br />
<span style="color: #0000ff;">e</span>. 找到如下一段：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;post-&amp;lt;?php the_ID(); ?&amp;gt;&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;post&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h2 <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagetitle&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>p the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;&lt;/</span>h2<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>small <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;subtitle&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>p the_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'m.d.Y'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">--&gt;</span> <span style="color: #004000;">by</span> <span style="color: #339933;">&lt;!--</span>p the_author<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">--&gt;&lt;!--</span>p edit_post_link<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Edit'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">' - '</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;</span> <span style="color: #339933;">-</span> <span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;#respond&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>p comments_number<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'0 Comment'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'1 Comment'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'% Comments'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;&lt;/</span>a<span style="color: #339933;">&gt;</span>
Posted in <span style="color: #339933;">&lt;!--</span>p the_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">', '</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>small<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;entry&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

</pre>
<div  mce_tmp="1">同时，将：“'0 Comment', '1 Comment', '% Comments'”<br--> 分别改成：“'暂时还没有留言', '共有 1 条留言', '共有 % 条留言' ”；<br />
在下面的语句之前加上换行符号：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;entry&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<p>那么这一段语句最终变成了：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;post-&amp;lt;?php the_ID(); ?&amp;gt;&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;post&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h2 <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagetitle&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>p the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;&lt;/</span>h2<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>small <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;subtitle&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>p edit_post_link<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Edit'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">' - '</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;</span> <span style="color: #339933;">-</span> <span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;#respond&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>p comments_number<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'暂时还没有留言'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'共有 1 条留言'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'共有 % 条留言'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>small<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;entry&quot;</span><span style="color: #339933;">&gt;</span>
            <span style="color: #339933;">&lt;!--</span>p the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!--</span>p the_tags<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Tag after '</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">', '</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<p><span style="color: #0000ff;">f</span>. 完成以上修改后，存盘并关闭guestbook.php；</p>
<p><span style="color: #0000ff;">g</span>. 复制comments.php并重命名为gbcomments.php；</p>
<p><span style="color: #0000ff;">h</span>. 打开gbcomments.php，找到下面两段语句：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span> You can start editing here<span style="color: #339933;">.</span> <span style="color: #339933;">--&gt;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>form id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;commentform&quot;</span> action<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&amp;lt;?php echo get_option('siteurl'); ?&amp;gt;/wp-comments-post.php&quot;</span> enctype<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;application/x-www-form-urlencoded&quot;</span> method<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;post&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>form<span style="color: #339933;">&gt;</span></pre></div></div>

<p>将这两段之间的语句(不包括这两段)，全部剪切/黏贴到下面的语句之后，以产生留言框在留言之前的效果：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></div></div>

<p><span style="color: #0000ff;">i</span>. 找到:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>label <span style="color: #b1b100;">for</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;comment&quot;</span><span style="color: #339933;">&gt;&lt;</span>strong<span style="color: #339933;">&gt;</span>Please Comments<span style="color: #339933;">:</span> <span style="color: #339933;">&lt;/</span>strong<span style="color: #339933;">&gt;&lt;/</span>label<span style="color: #339933;">&gt;</span></pre></div></div>

<p>将其中的"Please Comments:" 改成"请留言: "；</p>
<p><span style="color: #0000ff;">j</span>. 找到如下语句：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>h3 id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;respond&quot;</span><span style="color: #339933;">&gt;&lt;</span>span <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;hidden&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>p comments_number<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'No Responses'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'One Response'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'% Responses'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">--&gt;</span> <span style="color: #004000;">to</span> “<span style="color: #339933;">&lt;!--</span>p the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;--&gt;</span>”<span style="color: #339933;">&lt;/</span>span<span style="color: #339933;">&gt;&lt;/</span>h3<span style="color: #339933;">&gt;</span></pre></div></div>

<p>将其中的"'No Responses', 'One Response', '% Responses' "改成"'没有留言', '1 条留言', '% 条留言' "；<br />
同时，删除下面这一对标签（仅仅是删标签，标签之间的内容不删除）:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>span <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;hidden&quot;</span><span style="color: #339933;">&gt;......&lt;/</span>span<span style="color: #339933;">&gt;</span></pre></div></div>

<p><span style="color: #0000ff;">k</span>. 修改完毕，存盘并关闭gbcomments.php；</p>
<p>留言倒序也可以通过修改gbcomments.php来实现。不过这里是通过插件 <a href="http://yozor.com/articles/my_website_plugin_list.html" target="_blank">插件</a> <a href="http://blog.2i2j.com/plugins/wp-paged-comments" target="_blank">WP Paged Comments</a> 来实现的。<br />
参考文章：<br />
<a href="http://www.sbtalk.com.cn/2007/06/16/wordpress_guestbook.html" target="_blank">简单5步，制作wordpress留言板</a><br />
<a href="http://fisio.cn/wordpress-guestbook-without-plugins.html" target="_blank">不用插件自制wordpress留言簿</a><br />
<a href="http://zeuscn.net/archives/2007/09/02/messageboard-for-wordpress/" target="_blank">两步创建留言本</a></p>
<h3><span style="color: #ff00ff;">2. 简单修改链接页面文件(links.php)。</span></h3>
<p>待续......</pre>
]]></content:encoded>
			<wfw:commentRss>http://yozor.com/articles/record_of_wordpress_modification.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>我所用的插件</title>
		<link>http://yozor.com/articles/my_website_plugin_list.html</link>
		<comments>http://yozor.com/articles/my_website_plugin_list.html#comments</comments>
		<pubDate>Wed, 21 May 2008 14:05:14 +0000</pubDate>
		<dc:creator>YZ</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://yozor.com/?p=26</guid>
		<description><![CDATA[我使用的插件列表]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: left;"><span style="color: #0000ff;">2009-10-10更新：</span></h2>
<h2 style="text-align: left;"><span style="color: #ff9900;">以下是本博客使用的插件列表:</span></h2>
<p><a href="http://akismet.com/" target="_blank">Akismet</a> : WordPress 的开发者们做的一个分布式的 anti-spam 系统，具有学习能力。用的人越多，运行的时间越长，效果越佳.</p>
<p><a href="http://www.1pixelout.net/code/audio-player-wordpress-plugin/" target="_blank">Audio player</a>: 用来播放MP3.</p>
<p><span><a href="http://wordpress.org/extend/plugins/clean-archives-reloaded/" target="_blank"><span style="color: #c60a00;">Clean</span> <span style="color: #c60a00;">Archives</span> <span style="color: #c60a00;">Reloaded</span></a>: 一款不错的插件，它能够帮你把wordpress上所有文章按月归档成一列一列的，非常清晰的，而且还带有  JavaScript效果，可以让这些列拆分和扩。<span id="more-26"></span></span></p>
<p><a href="http://www.mac-dev.net/" target="_blank">Flash Video Player</a> : 播放音频和视频, 支持的格式非常多.</p>
<p><a href="http://www.arnebrachhold.de/redir/sitemap-home/">Google XML Sitemaps</a> : 生成一个sitemap, supported by Ask.com, Google, MSN Search and YAHOO.</p>
<p><a href="http://rmarsh.com/plugins/" target="_blank">Post-Plugin Library</a>: 辅助插件，本身不实现具体功能，但是启用 “Random Posts”、”Recent Comments”、”Recent Posts” 这三个插件，必须先安装它。</p>
<p><a href="http://rmarsh.com/plugins/recent-comments/" target="_blank">Recent Comments</a>: 显示最新评论内容，可以灵活定义显示内容和格式。</p>
<p><a href="http://rmarsh.com/plugins/recent-posts/" target="_blank">Recent Posts</a>: 显示最新文章，可以灵活定义显示格式。</p>
<p><a href="http://fairyfish.net/2009/01/16/thread-twitter/" target="_blank">Thread Twitter</a>:  会话方式显示你的 Tweets。</p>
<p><a href="http://wordpress.org/extend/plugins/twitter-tools/" target="_blank">Twitter Tools</a>:  Twitter工具。</p>
<p><a onclick="pageTracker._trackPageview('/outgoing/www.oratransplant.nl/uga');" href="http://www.oratransplant.nl/uga" target="_blank">Ultimate Google Analytics</a> 只需要填上Google Analytics的识别码就可以用上这款强大的免费浏览分析服务了。</p>
<p><a href="http://www.ilfilosofo.com/blog/wp-db-backup" target="_blank">WordPress Database Backup</a>: 定期备份wordpress数据到email.</p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-23-related-posts-plugin/" target="_blank">WordPress Related Posts</a>: 相关日志插件。</p>
<p><a href="http://blog.2i2j.com/plugins/wordpress-thread-comment" target="_blank">Wordpress Thread Comment</a>: 偶爱偶家 允许用户回复某个特定的评论并集中显示相似评论, 可以自由选择是否使用ajax.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-pagenavi/" target="_blank">wp-pagenavi</a>:  页面分页插件</p>
<p><a href="http://wordpress.org/extend/plugins/wp-syntax/" target="_blank">WP &#8211; Syntax</a>: 以<span style="color: #33cccc;">&lt; pre lang=”php”&gt; 代码内容 &lt; /pre &gt;</span>这种形式来实现代码高亮，<a href="http://parandroid.com/7-wordpress-syntax-highlight-plugin/" target="_blank">这里</a>和<a href="http://bbs.wopus.org/thread-210-1-1.html" target="_blank">这里</a>有简单介绍。<a href="http://wordpress.org/extend/plugins/wp-syntax/other_notes/" target="_blank">这里</a>是官方的使用说明。</p>
<p><a href="http://blog.2i2j.com/plugins/wp-paged-comments" target="_blank">WP Paged Comments</a>: 偶爱偶家 评论分页插件，也可以设置评论顺序或倒序显示。</p>
<p><a href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WP Super Cache</a>:<span style="font-size: small;"> Wordpress缓存插件。</span><a href="http://fairyfish.net/2008/10/27/wp-super-cache/" target="_blank"><span style="font-size: small;"><br />
</span></a></p>
<p><a href="http://wordpress.org/extend/plugins/wp-widget-cache/" target="_blank">WP Widget Cache</a>:  针对侧边栏作出缓存的插件</p>
<p><a href="http://wordpress.org/extend/plugins/wpg2/" target="_blank"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://yozor.com/articles/my_website_plugin_list.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>72松，不是一般的快，赞一个！</title>
		<link>http://yozor.com/articles/72pines_fast.html</link>
		<comments>http://yozor.com/articles/72pines_fast.html#comments</comments>
		<pubDate>Fri, 02 May 2008 14:16:05 +0000</pubDate>
		<dc:creator>YZ</dc:creator>
				<category><![CDATA[网络IT]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://yozor.com/?p=20</guid>
		<description><![CDATA[试用wordpress空间72松后的感受:快、服务好、稳定。]]></description>
			<content:encoded><![CDATA[<p>试用了<a title="72松" href="http://72pines.com" target="_blank">72松</a>,感觉访问速度不是一般的快，特别是选择了Mainland China Server镜像服务器后，基本上是速度如飞。</p>
<p>申请绑定域名也非常容易，发一个email申请一下,第二天晚上登录上来，发现已经可以绑定域名了，颇出乎意料。</p>
<p>对于一般的wordpress博客用户, 只要流量不是太大,我认为72松是比较适合的&#8212;速度快、服务好、稳定!</p>
]]></content:encoded>
			<wfw:commentRss>http://yozor.com/articles/72pines_fast.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>&#8220;理想空间&#8221;不支持Mod_rewrite ?</title>
		<link>http://yozor.com/articles/host_not_support_mod_rewrite.html</link>
		<comments>http://yozor.com/articles/host_not_support_mod_rewrite.html#comments</comments>
		<pubDate>Thu, 10 Apr 2008 06:28:05 +0000</pubDate>
		<dc:creator>YZ</dc:creator>
				<category><![CDATA[站点日志]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[空间]]></category>

		<guid isPermaLink="false">http://yozor.com/?p=10</guid>
		<description><![CDATA[这个空间(理想空间)貌似不支持Mod_rewrite, 永久链接设置里面一定要加上index.php, 好像用feedsky也会出现问题不太爽(4/10 update)。
有空再研究研究。
4/11继续更新：
根据理想空间上的说法，该空间实际上是支持mod_rewrite的，不过要修改一下&#8220;.htaccess&#8221;文件。
我尝试了一下，果然可以，永久链接地址里面将index.php去掉后，一切正常。
步骤如下:
1. 下载专WP专用的&#8221;.htaccess&#8221;文件:
&#8220;.htaccess&#8221;下载
2. 将该文件通过FTP上传到自己的空间，见下图：

]]></description>
			<content:encoded><![CDATA[<p>这个空间(<a href="http://www.lixiangweb.com/" target="_blank">理想空间</a>)貌似不支持Mod_rewrite, 永久链接设置里面一定要加上index.php, <span style="color: #00ccff;"><span style="text-decoration: line-through;">好像用feedsky也会出现问题</span>不</span><span style="color: #00ccff;">太爽</span><span style="color: #ff0000;">(4/10 update)。</span></p>
<p>有空再研究研究。</p>
<p><span style="color: #ff0000;">4/11继续更新：</span></p>
<p><span style="color: #3366ff;">根据<a href="http://www.lixiangweb.com/" target="_blank">理想空间</a>上的说法，该空间实际上是<a href="http://www.lixiangweb.com/thread-5193-1-1.html" target="_blank">支持mod_rewrite</a>的，不过要修改一下<a href="http://www.lixiangweb.com/thread-4547-1-3.html" target="_blank">&#8220;.htaccess&#8221;文件</a>。</span></p>
<p><span style="color: #3366ff;">我尝试了一下，果然可以，永久链接地址里面将index.php去掉后，一切正常。</span></p>
<p><span style="color: #3366ff;">步骤如下:</span></p>
<p><span style="color: #3366ff;">1. 下载专WP专用的&#8221;.htaccess&#8221;文件:</span></p>
<p><span style="color: #3366ff;"><a href="http://www.boxcn.net/shared/lm7ew8oisw" target="_blank">&#8220;.htaccess&#8221;下载</a></span></p>
<p><span style="color: #3366ff;">2. 将该文件通过FTP上传到自己的空间，见下图：<span id="more-10"></span></span></p>
<p><img src="http://api.photoshop.com/home_c7bbebc7789b495ca9945e28969186f3/adobe-px-assets/119deffdd9a54cd580e4e5f423ffe6ac" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://yozor.com/articles/host_not_support_mod_rewrite.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>创建新博客</title>
		<link>http://yozor.com/articles/new_blog.html</link>
		<comments>http://yozor.com/articles/new_blog.html#comments</comments>
		<pubDate>Thu, 10 Apr 2008 06:11:39 +0000</pubDate>
		<dc:creator>YZ</dc:creator>
				<category><![CDATA[站点日志]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[博客]]></category>

		<guid isPermaLink="false">http://yozor.com/?p=9</guid>
		<description><![CDATA[曾建了很多Blog, 都只是折腾一下，写一两篇文章，然后荒废在那里。
昨晚弄了个空间，今天将wordpres装了，大致整理一下，算初步完工。待日后一边写文章，一边完善。
希望这次能够坚持久一些，认真写。 主题并没想好，其实写什么不重要，主要是练练写文章。
争取做到平均每周一篇!
]]></description>
			<content:encoded><![CDATA[<p>曾建了很多Blog, 都只是折腾一下，写一两篇文章，然后荒废在那里。</p>
<p>昨晚弄了个空间，今天将wordpres装了，大致整理一下，算初步完工。待日后一边写文章，一边完善。</p>
<p>希望这次能够坚持久一些，认真写。 主题并没想好，其实写什么不重要，主要是练练写文章。</p>
<p>争取做到平均每周一篇!</p>
]]></content:encoded>
			<wfw:commentRss>http://yozor.com/articles/new_blog.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
