<?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>Alex&#039;s Station &#187; wordpress</title>
	<atom:link href="http://www.alexgao.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alexgao.com</link>
	<description>走过一站，留下一笔</description>
	<lastBuildDate>Wed, 28 Dec 2011 01:48:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>解决wordpress表情错位和边框问题</title>
		<link>http://www.alexgao.com/2011/03/06/face-dislocation-and-borders-to-solve-the-problem-wordpress/</link>
		<comments>http://www.alexgao.com/2011/03/06/face-dislocation-and-borders-to-solve-the-problem-wordpress/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 06:05:38 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[表情]]></category>
		<category><![CDATA[错位]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=981</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2011/03/06/face-dislocation-and-borders-to-solve-the-problem-wordpress/" title="解决wordpress表情错位和边框问题"></a>喜欢经常折腾主题的朋友可能会碰到文章中表情和文字不对其，高出文字的问题，有时候表情还会带有边框，实在是很不爽。下面就教你如何解决这个问题！ 在Wordpress中，表情图片自动地赋予了一个 CSS类：wp-smiley，您可以使用这个样式类来给表情图片设置专门的显示样式，使它不同于其他的图片显示样式。所以现在就好办了，我们只要在CSS里面给它一个定义，这些问题就都可以得到解决。WordPress中的表情是通过“img.wp-smiley”来进行控制，接下来就是给这个元素赋值了。 (......)点击阅读 《解决wordpress表情错位和边框问题》 全文 © Alex Gao for Alex&#039;s Station, 2011. &#124; Permalink &#124; 7 条评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2011/03/06/face-dislocation-and-borders-to-solve-the-problem-wordpress/" title="解决wordpress表情错位和边框问题"></a><p>喜欢经常折腾主题的朋友可能会碰到文章中表情和文字不对其，高出文字的问题，有时候表情还会带有边框，实在是很不爽。下面就教你如何解决这个问题！</p>
<p>在Wordpress中，表情图片自动地赋予了一个 CSS类：wp-smiley，您可以使用这个样式类来给表情图片设置专门的显示样式，使它不同于其他的图片显示样式。所以现在就好办了，我们只要在CSS里面给它一个定义，这些问题就都可以得到解决。WordPress中的表情是通过“img.wp-smiley”来进行控制，接下来就是给这个元素赋值了。<br />
(......)<br/><br/>点击阅读 《<a href="http://www.alexgao.com/2011/03/06/face-dislocation-and-borders-to-solve-the-problem-wordpress/">解决wordpress表情错位和边框问题</a>》 全文<br/> </p>
<hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2011. |
<a href="http://www.alexgao.com/2011/03/06/face-dislocation-and-borders-to-solve-the-problem-wordpress/">Permalink</a> |
<a href="http://www.alexgao.com/2011/03/06/face-dislocation-and-borders-to-solve-the-problem-wordpress/#comments">7 条评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2011/03/06/face-dislocation-and-borders-to-solve-the-problem-wordpress/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>用 jQuery 实现点击回复之后显示@用户名的效果</title>
		<link>http://www.alexgao.com/2011/03/05/reply-effect-with-jquery/</link>
		<comments>http://www.alexgao.com/2011/03/05/reply-effect-with-jquery/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 05:49:06 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[jqurey]]></category>
		<category><![CDATA[评论]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=976</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2011/03/05/reply-effect-with-jquery/" title="用 jQuery 实现点击回复之后显示@用户名的效果"></a>用了ZWW大哥的主题以后就一直开始折腾了，看到他的网站点击回复按钮会直接显示@用户名的效果，所以就把相关的代码转过来，做个笔记。更多的信息可以参考他的这篇文章（具体效果可以回复这篇文章看看） 首先确定自己的主题评论结构基本是 WordPress 默认的结构（也就是说主题的评论结构比较标准），而且用的是 WordPress 2.7 以上版本的 wp_list_comments 函数，具体可以参考http://codex.wordpress.org/Template_Tags/wp_list_comments (......)点击阅读 《用 jQuery 实现点击回复之后显示@用户名的效果》 全文 © Alex Gao for Alex&#039;s Station, 2011. &#124; Permalink &#124; 赶紧来抢沙发评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2011/03/05/reply-effect-with-jquery/" title="用 jQuery 实现点击回复之后显示@用户名的效果"></a><p>用了ZWW大哥的主题以后就一直开始折腾了，看到他的网站点击回复按钮会直接显示@用户名的效果，所以就把相关的代码转过来，做个笔记。更多的信息可以参考他的<a href="http://zww.me/archives/24817">这篇文章</a>（具体效果可以回复这篇文章看看）</p>
<p>首先确定自己的主题评论结构基本是 WordPress 默认的结构（也就是说主题的评论结构比较标准），而且用的是 WordPress 2.7 以上版本的 wp_list_comments 函数，具体可以参考<a href="http://codex.wordpress.org/Template_Tags/wp_list_comments">http://codex.wordpress.org/Template_Tags/wp_list_comments</a><br />
(......)<br/><br/>点击阅读 《<a href="http://www.alexgao.com/2011/03/05/reply-effect-with-jquery/">用 jQuery 实现点击回复之后显示@用户名的效果</a>》 全文<br/> </p>
<hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2011. |
<a href="http://www.alexgao.com/2011/03/05/reply-effect-with-jquery/">Permalink</a> |
<a href="http://www.alexgao.com/2011/03/05/reply-effect-with-jquery/#comments">赶紧来抢沙发评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2011/03/05/reply-effect-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>非插件给wordpress加上评论编辑器</title>
		<link>http://www.alexgao.com/2011/03/04/non-plug-in-to-add-comment-editor/</link>
		<comments>http://www.alexgao.com/2011/03/04/non-plug-in-to-add-comment-editor/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 05:45:55 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[编辑器]]></category>
		<category><![CDATA[评论]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=971</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2011/03/04/non-plug-in-to-add-comment-editor/" title="非插件给wordpress加上评论编辑器"></a>一直想给评论加上简易的编辑器，最近正好有心情折腾一下，研究了一下，现在把实现的方法和大家分享（本文参考了《为评论框添加简单文字编辑器》这篇文章的绝大部分代码，并修改了一些错误，增加了点功能）。 (......)点击阅读 《非插件给wordpress加上评论编辑器》 全文 © Alex Gao for Alex&#039;s Station, 2011. &#124; Permalink &#124; 8 条评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2011/03/04/non-plug-in-to-add-comment-editor/" title="非插件给wordpress加上评论编辑器"></a><p>一直想给评论加上简易的编辑器，最近正好有心情折腾一下，研究了一下，现在把实现的方法和大家分享（本文参考了<a href="http://imluren.com/2011/01/simple-editor-tools.html">《为评论框添加简单文字编辑器》</a>这篇文章的绝大部分代码，并修改了一些错误，增加了点功能）。<br />
(......)<br/><br/>点击阅读 《<a href="http://www.alexgao.com/2011/03/04/non-plug-in-to-add-comment-editor/">非插件给wordpress加上评论编辑器</a>》 全文<br/> </p>
<hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2011. |
<a href="http://www.alexgao.com/2011/03/04/non-plug-in-to-add-comment-editor/">Permalink</a> |
<a href="http://www.alexgao.com/2011/03/04/non-plug-in-to-add-comment-editor/#comments">8 条评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2011/03/04/non-plug-in-to-add-comment-editor/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>实现wordpress文章字体大小切换调节</title>
		<link>http://www.alexgao.com/2011/02/26/wordpress-fontresizer/</link>
		<comments>http://www.alexgao.com/2011/02/26/wordpress-fontresizer/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 12:11:08 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[jqurey]]></category>
		<category><![CDATA[字体]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=949</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2011/02/26/wordpress-fontresizer/" title="实现wordpress文章字体大小切换调节"></a>这两天折腾的换上了新的主题，也修改了不少东西，发现我现在的口味真是越来越清淡了，网站的配色也都基本是淡色系了，而且风格也越来越简化。我终于发现了我的需求：简单明快的风格，大大的文章宽度，和一套可以分享图片，视频和代码的插件。是的，这样足矣！ 这篇日志主要是想讲讲我是如何实现文章的字体大小切换调节的，其实这也算是我的宿愿了，一直希望wordpress可以像之前用过的pjblog一样可以允许读者自己调节文章字体的大小。这两天在网上找找，折腾了一下还真实现了这个功能！ (......)点击阅读 《实现wordpress文章字体大小切换调节》 全文 © Alex Gao for Alex&#039;s Station, 2011. &#124; Permalink &#124; 2 条评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2011/02/26/wordpress-fontresizer/" title="实现wordpress文章字体大小切换调节"></a><p>这两天折腾的换上了新的主题，也修改了不少东西，发现我现在的口味真是越来越清淡了，网站的配色也都基本是淡色系了，而且风格也越来越简化。我终于发现了我的需求：简单明快的风格，大大的文章宽度，和一套可以分享图片，视频和代码的插件。是的，这样足矣！</p>
<p>这篇日志主要是想讲讲我是如何实现文章的字体大小切换调节的，其实这也算是我的宿愿了，一直希望wordpress可以像之前用过的pjblog一样可以允许读者自己调节文章字体的大小。这两天在网上找找，折腾了一下还真实现了这个功能！<br />
(......)<br/><br/>点击阅读 《<a href="http://www.alexgao.com/2011/02/26/wordpress-fontresizer/">实现wordpress文章字体大小切换调节</a>》 全文<br/> </p>
<hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2011. |
<a href="http://www.alexgao.com/2011/02/26/wordpress-fontresizer/">Permalink</a> |
<a href="http://www.alexgao.com/2011/02/26/wordpress-fontresizer/#comments">2 条评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2011/02/26/wordpress-fontresizer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress非插件调用搜狐[新浪]微博(解决延时和时区问题)</title>
		<link>http://www.alexgao.com/2010/08/01/wordpress-fetch_feed-method/</link>
		<comments>http://www.alexgao.com/2010/08/01/wordpress-fetch_feed-method/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 16:13:36 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[微博]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=715</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2010/08/01/wordpress-fetch_feed-method/" title="Wordpress非插件调用搜狐[新浪]微博(解决延时和时区问题)"></a>最近一直琢磨着在网站的侧边栏搞个微博展示，这样也丰富了网站的内容，貌似现在最火爆的是新浪微博，另外其他很多门户网站都也开始提供微博服务，但是要把微博搬到wordpress上来显示显然还是要下点功夫的，新浪已经提供了Flash和HTML两种代码来嵌入到自己的网站里，但很显然用着很别扭，自己不能动手修改样式，而且还打着新浪的广告，看着很不舒服，经过一番研究，终于找到一套完美的解决方法！现在和大家分享！ (......)点击阅读 《WordPress非插件调用搜狐[新浪]微博(解决延时和时区问题)》 全文 © Alex Gao for Alex&#039;s Station, 2010. &#124; Permalink &#124; 4 条评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2010/08/01/wordpress-fetch_feed-method/" title="Wordpress非插件调用搜狐[新浪]微博(解决延时和时区问题)"></a><p>最近一直琢磨着在网站的侧边栏搞个微博展示，这样也丰富了网站的内容，貌似现在最火爆的是新浪微博，另外其他很多门户网站都也开始提供微博服务，但是要把微博搬到wordpress上来显示显然还是要下点功夫的，新浪已经提供了Flash和HTML两种代码来嵌入到自己的网站里，但很显然用着很别扭，自己不能动手修改样式，而且还打着新浪的广告，看着很不舒服，经过一番研究，终于找到一套完美的解决方法！现在和大家分享！<br />
(......)<br/><br/>点击阅读 《<a href="http://www.alexgao.com/2010/08/01/wordpress-fetch_feed-method/">WordPress非插件调用搜狐[新浪]微博(解决延时和时区问题)</a>》 全文<br/> </p>
<hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2010. |
<a href="http://www.alexgao.com/2010/08/01/wordpress-fetch_feed-method/">Permalink</a> |
<a href="http://www.alexgao.com/2010/08/01/wordpress-fetch_feed-method/#comments">4 条评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2010/08/01/wordpress-fetch_feed-method/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>怎样使用wordpress默认表情符号</title>
		<link>http://www.alexgao.com/2009/01/23/wordpress-smilies/</link>
		<comments>http://www.alexgao.com/2009/01/23/wordpress-smilies/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 03:27:52 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[表情]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=433</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2009/01/23/wordpress-smilies/" title="怎样使用wordpress默认表情符号"></a>很多朋友会抱怨wordpress编辑器没有表情符号，其实不然，wordpress其实内置了表情符号替换功能，就看你会不会用。 在使用 wordpress 默认表情前请确认已经开启该功能，方法：设置 &#8211; 撰写 &#8211; 格式化，在 自动将表情符号转换成图片显示 选项前打勾，保存即可。 另外，使用 wordpress 默认表情的时候注意要在两边都插入空格键，否则不会显示表情符号。表情图片全部收录在/wp-includes/images/smilies/ 下面将从网上收集整理到的所有表情连同代码列了一个表以便记忆： (......)点击阅读 《怎样使用wordpress默认表情符号》 全文 © Alex Gao for Alex&#039;s Station, 2009. &#124; Permalink &#124; 2 条评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2009/01/23/wordpress-smilies/" title="怎样使用wordpress默认表情符号"></a><p>很多朋友会抱怨wordpress编辑器没有表情符号，其实不然，wordpress其实内置了表情符号替换功能，就看你会不会用。</p>
<p>在使用 wordpress 默认表情前请确认已经开启该功能，方法：设置 &#8211; 撰写 &#8211; 格式化，在 自动将表情符号转换成图片显示 选项前打勾，保存即可。</p>
<p>另外，<span style="color: #ff0000;">使用 wordpress 默认表情的时候注意要在两边都插入空格键</span>，否则不会显示表情符号。表情图片全部收录在/wp-includes/images/smilies/</p>
<p>下面将从网上收集整理到的所有表情连同代码列了一个表以便记忆：</p>
<p>(......)<br/><br/>点击阅读 《<a href="http://www.alexgao.com/2009/01/23/wordpress-smilies/">怎样使用wordpress默认表情符号</a>》 全文<br/> </p>
<hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2009. |
<a href="http://www.alexgao.com/2009/01/23/wordpress-smilies/">Permalink</a> |
<a href="http://www.alexgao.com/2009/01/23/wordpress-smilies/#comments">2 条评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2009/01/23/wordpress-smilies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>给wordpress添加coolcode按钮(提供修改文件)</title>
		<link>http://www.alexgao.com/2009/01/23/coolcode/</link>
		<comments>http://www.alexgao.com/2009/01/23/coolcode/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 03:17:44 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[coolcode]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=430</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2009/01/23/coolcode/" title="给wordpress添加coolcode按钮(提供修改文件)"></a>因为最近要经常贴代码，所以就想到了coolcode这款非常优秀的代码高亮插件，是国人修改的，能够支持各种编程语言和脚本语言的高亮显示，但是由于每次加代码都要手动加入coolcode标签和一些参数，甚显麻烦，所以google了一下，找到了修改wordpress来达到在编辑器内增加coolcode按钮的方法. 相信很多同学是看到这里提供修改文件下载才过来的，没错！改代码是件麻烦事，所以Alex给大家提供了修改好的js文件下载，把本文下面的quicktag.js下载下来以后，上传到wp-includes\js\目录覆盖即可！ (......)点击阅读 《给wordpress添加coolcode按钮(提供修改文件)》 全文 © Alex Gao for Alex&#039;s Station, 2009. &#124; Permalink &#124; 有一条评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2009/01/23/coolcode/" title="给wordpress添加coolcode按钮(提供修改文件)"></a><p>因为最近要经常贴代码，所以就想到了coolcode这款非常优秀的代码高亮插件，是国人修改的，能够支持各种编程语言和脚本语言的高亮显示，但是由于每次加代码都要手动加入coolcode标签和一些参数，甚显麻烦，所以google了一下，找到了修改wordpress来达到在编辑器内增加coolcode按钮的方法.</p>
<p>相信很多同学是看到这里提供修改文件下载才过来的，没错！改代码是件麻烦事，所以Alex给大家提供了修改好的js文件下载，把本文下面的quicktag.js下载下来以后，上传到<span style="color: #ff6600;">wp-includes\js\</span>目录覆盖即可！</p>
<p>(......)<br/><br/>点击阅读 《<a href="http://www.alexgao.com/2009/01/23/coolcode/">给wordpress添加coolcode按钮(提供修改文件)</a>》 全文<br/> </p>
<hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2009. |
<a href="http://www.alexgao.com/2009/01/23/coolcode/">Permalink</a> |
<a href="http://www.alexgao.com/2009/01/23/coolcode/#comments">有一条评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2009/01/23/coolcode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>自动将标题转换成英文的插件</title>
		<link>http://www.alexgao.com/2008/12/21/will-be-automatically-converted-to-the-english-title-of-the-plug-in/</link>
		<comments>http://www.alexgao.com/2008/12/21/will-be-automatically-converted-to-the-english-title-of-the-plug-in/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 20:49:15 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=371</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2008/12/21/will-be-automatically-converted-to-the-english-title-of-the-plug-in/" title="自动将标题转换成英文的插件"></a>其实我一直都希望通过手机写日志，因为我可以轻松的通过访问http://www.alexgao.com/wap 来撰写新的日志，但是手机版的日志却尚没有编辑永久链接的选项，所以找到这款wordpress插件cos_slug_translator ，装完以后就完全不用理会永久链接的编辑问题，直接写完日志点击发布，然后该插件会自动把标题通过Google Translate翻译成英文，效果非常棒！故隆重推荐之！以后终于可以真正用手机开始发布日志了 PS:另外推荐一篇文章，上面介绍了很多wp的必备插件，相信对很多基于wordpress搭建的站点很有帮助  http://www.happinesz.cn/archives/403/ 声明: 本文采用 BY-NC-SA 协议进行授权 &#124; Alex&#039;s Station转载请注明转自《自动将标题转换成英文的插件》 © Alex Gao for Alex&#039;s Station, 2008. &#124; Permalink &#124; 赶紧来抢沙发评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2008/12/21/will-be-automatically-converted-to-the-english-title-of-the-plug-in/" title="自动将标题转换成英文的插件"></a><p>其实我一直都希望通过手机写日志，因为我可以轻松的通过访问<a href="http://www.alexgao.com/wap" target="_blank">http://www.alexgao.com/wap</a> 来撰写新的日志，但是手机版的日志却尚没有编辑永久链接的选项，所以找到这款wordpress插件<a href="http://www.storyday.com/html/y2007/1202_auto-slug-translate-plugin.html" target="_blank">cos_slug_translator</a> ，装完以后就完全不用理会永久链接的编辑问题，直接写完日志点击发布，然后该插件会自动把标题通过Google Translate翻译成英文，效果非常棒！故隆重推荐之！以后终于可以真正用手机开始发布日志了 <img src='http://www.alexgao.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>PS:另外推荐一篇文章，上面介绍了很多wp的必备插件，相信对很多基于wordpress搭建的站点很有帮助  <a href="http://www.happinesz.cn/archives/403/" target="_blank">http://www.happinesz.cn/archives/403/</a></p>
<p class="announce"><span style="font-weight:bold;text-shadow:0 1px 0 #ddd;">声明:</span> 本文采用 <a rel="nofollow" href="http://creativecommons.org/licenses/by-nc-sa/3.0/" title="署名-非商业性使用-相同方式共享">BY-NC-SA</a> 协议进行授权 | <a href="http://www.alexgao.com">Alex&#039;s Station</a><br />转载请注明转自《<a rel="bookmark" title="自动将标题转换成英文的插件" href="http://www.alexgao.com/2008/12/21/will-be-automatically-converted-to-the-english-title-of-the-plug-in/">自动将标题转换成英文的插件</a>》</p><hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2008. |
<a href="http://www.alexgao.com/2008/12/21/will-be-automatically-converted-to-the-english-title-of-the-plug-in/">Permalink</a> |
<a href="http://www.alexgao.com/2008/12/21/will-be-automatically-converted-to-the-english-title-of-the-plug-in/#comments">赶紧来抢沙发评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2008/12/21/will-be-automatically-converted-to-the-english-title-of-the-plug-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 个 WordPress 主题生成器</title>
		<link>http://www.alexgao.com/2008/08/23/6-wordpress-theme-generators/</link>
		<comments>http://www.alexgao.com/2008/08/23/6-wordpress-theme-generators/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 03:59:36 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[分享☆Share]]></category>
		<category><![CDATA[主题]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=245</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2008/08/23/6-wordpress-theme-generators/" title="6 个 WordPress 主题生成器"></a>你的 WordPress 主题是免费的主题，还是自己设计的？你想有一个独一无二的主题，但是不会 Photoshop，其实这些都不是问题，Hidden Pixels 为你收集了 6 个最佳的 WordPress 主题生成器 templatr templatr 是一个模板生成器，你可以用它在线为你的博客创建独一无二的设计，使用它你不需要任何 HTML 的背景知识和特殊的工具，你所需的只是浏览器，可能还需要一些创造力或者一些博客设计的想法。通过它，你只需要几下简单的点击就能下载到你完成的模板。 (......)点击阅读 《6 个 WordPress 主题生成器》 全文 © Alex Gao for Alex&#039;s Station, 2008. &#124; Permalink &#124; 2 条评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2008/08/23/6-wordpress-theme-generators/" title="6 个 WordPress 主题生成器"></a><p>你的 WordPress 主题是免费的主题，还是自己设计的？你想有一个独一无二的主题，但是不会 Photoshop，其实这些都不是问题，Hidden Pixels 为你收集了 6 个<a class="external" rel="nofollow" href="http://hiddenpixels.com/designer-tools/wordpress-theme-generators/" target="_blank">最佳的 WordPress 主题生成器</a></p>
<p><strong><a class="external" rel="nofollow" href="http://templatr.cc/" target="_blank">templatr</a></strong></p>
<p>templatr 是一个模板生成器，你可以用它在线为你的博客创建独一无二的设计，使用它你不需要任何 HTML 的背景知识和特殊的工具，你所需的只是浏览器，可能还需要一些创造力或者一些博客设计的想法。通过它，你只需要几下简单的点击就能下载到你完成的模板。</p>
<p>(......)<br/><br/>点击阅读 《<a href="http://www.alexgao.com/2008/08/23/6-wordpress-theme-generators/">6 个 WordPress 主题生成器</a>》 全文<br/> </p>
<hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2008. |
<a href="http://www.alexgao.com/2008/08/23/6-wordpress-theme-generators/">Permalink</a> |
<a href="http://www.alexgao.com/2008/08/23/6-wordpress-theme-generators/#comments">2 条评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2008/08/23/6-wordpress-theme-generators/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>网站全面升级！！</title>
		<link>http://www.alexgao.com/2008/03/29/wp-update/</link>
		<comments>http://www.alexgao.com/2008/03/29/wp-update/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 07:58:17 +0000</pubDate>
		<dc:creator>Alex Gao</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[日记||My Diary]]></category>
		<category><![CDATA[升级]]></category>

		<guid isPermaLink="false">http://www.alexgao.com/?p=337</guid>
		<description><![CDATA[<a href="http://www.alexgao.com/2008/03/29/wp-update/" title="网站全面升级！！"></a>可能Linux用多了,总是想做小白鼠给新的测试版本做试验。今天看到有热心的网友把最新的wordpess 2.5RC3给汉化了~~再加上我的2.3总是有点小问题&#8230;于是乎一狠心就把网站的目录全部用2.5替换了。 重新的把数据库设置了一下~~OK！居然完全没有问题！这次升级以后明显发现网站的整体速度有很大提高，这得益于新的版本的优秀设计，以至于减少了对数据库的查询次数(当然如果你实在无聊，可以用插件把网站完全静态化！) (......)点击阅读 《网站全面升级！！》 全文 © Alex Gao for Alex&#039;s Station, 2008. &#124; Permalink &#124; 6 条评论]]></description>
			<content:encoded><![CDATA[<a href="http://www.alexgao.com/2008/03/29/wp-update/" title="网站全面升级！！"></a><p>可能Linux用多了,总是想做小白鼠给新的测试版本做试验。今天看到有热心的网友把最新的wordpess 2.5RC3给汉化了~~再加上我的2.3总是有点小问题&#8230;于是乎一狠心就把网站的目录全部用2.5替换了。</p>
<p>重新的把数据库设置了一下~~OK！居然完全没有问题！这次升级以后明显发现网站的整体速度有很大提高，这得益于新的版本的优秀设计，以至于减少了对数据库的查询次数(当然如果你实在无聊，可以用插件把网站完全静态化！)</p>
<p>(......)<br/><br/>点击阅读 《<a href="http://www.alexgao.com/2008/03/29/wp-update/">网站全面升级！！</a>》 全文<br/> </p>
<hr />
<p><small>© Alex Gao for <a href="http://www.alexgao.com">Alex&#039;s Station</a>, 2008. |
<a href="http://www.alexgao.com/2008/03/29/wp-update/">Permalink</a> |
<a href="http://www.alexgao.com/2008/03/29/wp-update/#comments">6 条评论</a> 

<br/>
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexgao.com/2008/03/29/wp-update/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

