<?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 2.8</title> <atom:link href="http://zou.lu/tags/wordpress-28/feed/" rel="self" type="application/rss+xml" /><link>http://zou.lu</link> <description>走点路，走自己牛逼的路，让那些个傻逼去说吧！</description> <lastBuildDate>Fri, 06 Jan 2012 13:28:45 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>打造 WordPress 的简易短网址</title><link>http://zou.lu/shortened-url-of-current-page-to-twitter/</link> <comments>http://zou.lu/shortened-url-of-current-page-to-twitter/#comments</comments> <pubDate>Tue, 21 Jul 2009 11:47:01 +0000</pubDate> <dc:creator>Showfom</dc:creator> <category><![CDATA[Web 2.0]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[.htaccess]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[WordPress 2.8]]></category><guid isPermaLink="false">http://zou.lu/shortened-url-of-current-page-to-twitter/</guid> <description><![CDATA[WordPress 2.8 以后，Permalink 系统已经很完美了，系统能自己判断错误的地址并且指向一个可能存在的地址，举个例子： 比如，这个文章地址并不存在：http://zou.lu/wo/ 但是 访问以后，WordPress 会判断最接近的地址，所以，就跳转到了 http://zou.lu/wordpress-28-released/ ，嗯，很智能吧？这样能有效防止损失的流量。 同样，以前我推荐过 Permalink Redirect 插件，目的是为了防止访问类似 http://zou.lu/?p=1 这样的地址时能自动跳转到自定义的 Permalink，而 WordPress 2.8 以后，根本用不着 Permalink Redirect 插件 ，因为内置的 Rewrite系统 已经能自动301跳转，根本用不着插件的支持，所以，就衍生了这篇文章。 我重点要讲的是如何利用 WordPress 打造一个简易的短网址，为每篇文章都建立一个短网址，而且增加一个 Retweet 链接，下面，就听 Showfom 小帅锅一一道来： 我们知道，默认没有自定义永久链接的时候，WordPress 每个文章的访问地址是类似于 http://zou.lu/?p=81 这样的，而 WordPress 2.8+ 的 Rewrite 机制完美地解决了301跳转问题，所以，利用这一点，我们可以为每个文章都弄一个类似 http://zou.lu/go/81 这样的短网址. 方法如下，Apache 主机的，打开根目录的 .htaccess 文件，输入这两行： # Redirect posts based on post-id RewriteEngine [...]]]></description> <content:encoded><![CDATA[<p><strong>WordPress 2.8</strong> 以后，<strong>Permalink 系统</strong>已经很完美了，系统能自己判断错误的地址并且指向一个可能存在的地址，举个例子：</p><p><span id="more-81"></span></p><p>比如，这个文章地址并不存在：<a title="一个不存在的地址" rel="nofollow" href="http://zou.lu/wo/">http://zou.lu/wo/</a> 但是 访问以后，WordPress 会判断最接近的地址，所以，就跳转到了 <a title="一个存在的实际地址" href="http://zou.lu/wordpress-28-released/">http://zou.lu/wordpress-28-released/</a> ，嗯，很智能吧？这样能有效防止损失的流量。</p><p>同样，以前我推荐过 <a title="Permalink Redirect" href="http://wordpress.org/extend/plugins/permalink-redirect/" target="_blank">Permalink Redirect</a> 插件，目的是为了防止访问类似 <a href="http://zou.lu/?p=1">http://zou.lu/?p=1</a> 这样的地址时能自动跳转到<strong>自定义的 Permalink</strong>，而 <strong>WordPress 2.8</strong> 以后，根本用不着<strong> Permalink Redirect 插件</strong> ，因为内置的 <strong>Rewrite系统</strong> 已经能<strong>自动301跳转</strong>，根本用不着插件的支持，所以，就衍生了这篇文章。</p><p>我重点要讲的是如何利用 <strong>WordPress </strong>打造一个简易的短网址，为每篇文章都建立一个短网址，而且增加一个 Retweet 链接，下面，就听 <strong>Showfom 小帅锅</strong>一一道来：</p><p>我们知道，默认没有自定义永久链接的时候，<strong>WordPress</strong> 每个文章的访问地址是类似于 <a title="本页原始地址" rel="nofollow" href="http://zou.lu/?p=81">http://zou.lu/?p=81</a> 这样的，而 <strong>WordPress 2.8+</strong> 的<strong> Rewrite</strong> 机制完美地解决了<strong>301跳转</strong>问题，所以，利用这一点，我们可以为每个文章都弄一个类似 <a title="本页短网址" rel="nofollow" href="http://zou.lu/go/81">http://zou.lu/go/81</a> 这样的短网址.</p><p>方法如下，<strong>Apache </strong>主机的，打开根目录的<strong> .htaccess</strong> 文件，输入这两行：</p><pre># Redirect posts based on post-id
RewriteEngine On
RewriteRule ^go/([0-9]+)$ ?p=$1 [R=301,L]</pre><p>通常因为开启了永久链接，所以 <strong>RewriteEngine On</strong> 本身存在，那么只要把 <strong>RewriteRule ^go/([0-9]+)$ ?p=$1 [R=301,L]</strong> 加入到 <strong>RewriteEngine On</strong> 这样下面即可。</p><p>这时候，测试一下，是否可以用 <a title="本页短网址" rel="nofollow" href="http://zou.lu/go/81">http://zou.lu/go/81</a> 这样的网址来访问，测试结果很让人满意。</p><p>我们知道，这个81是个<strong>postid</strong>，那么，如何让他自动在模板中显示呢？用到一个函数即可：</p><pre>&lt;?php the_ID(); ?&gt;</pre><p>很神奇吧？</p><p>这样，我们在模板的 <strong>single.php</strong> 里适当位置（一般是&lt;?php the_content(" "); ?&gt;这个函数下方合适）增加一行代码：</p><blockquote><p>&lt;br /&gt;</p><p>本文短网址：&lt;a href="&lt;?php echo get_option('home'); ?&gt;/go/&lt;?php the_ID(); ?&gt;" title="&lt;?php the_title(); ?&gt;" rel="external nofollow" &gt;&lt;?php echo get_option('home'); ?&gt;/go/&lt;?php the_ID(); ?&gt;&lt;/a&gt;</p></blockquote><p>(注意标点，要用英文输入法状态下的引号)</p><p>当然，有了这个简易的短网址，我们用来干什么呢？废话，当然是发布在Twitter等微博上了，然后，我们就加一条Retweet的链接：</p><blockquote><p>如果你觉得本文很可爱，请使用 Twitter 来 RT 本文：&lt;a  href="<a href="https://twitter.com/home?status=RT">https://twitter.com/home?status=RT</a> @Showfom : &lt;?php the_title(); ?&gt; &lt;?php echo get_option('home'); ?&gt;/go/&lt;?php the_ID(); ?&gt;" title="Tweet this post"&gt;ReTweet This&lt;/a&gt;</p></blockquote><p>自行修改 <strong>@Showfom</strong> 为自己的 <strong>Twitter</strong> 账户名，样式可以自己写一个，为了简洁我就不写了，效果参考本文下方的<strong> ReTweet This</strong> 字样即可。</p><p>===</p><p><strong>PS：</strong>我知道很多人有洁癖，非得用个.html结尾，那么.htaccess规则就是</p><blockquote><p>RewriteRule ^go/([0-9]+)\.html$ ?p=$1 [R=301,L]</p></blockquote><p>这样就可以通过 <a title="本页短网址" rel="nofollow" href="http://zou.lu/go/81.html">http://zou.lu/go/81.html</a> 来访问本站</p><p>还有人和我一样有洁癖，非得在链接最后加个斜杠，那么.htaccess规则就是</p><blockquote><p>RewriteRule ^go/([0-9]+)\$ ?p=$1 [R=301,L]</p></blockquote><p>这样就可以通过 <a title="本页短网址" rel="nofollow" href="http://zou.lu/go/81/">http://zou.lu/go/81/</a> 来访问本页</p><p>===</p><p><strong>再次PS：Nginx </strong>下的规则分别是：</p><blockquote><p>rewrite ^/go/([0-9]+)$ /?p=$1 permanent;</p><p>break;</p></blockquote><blockquote><p>rewrite ^/go/([0-9]+)\$ /?p=$1 permanent;</p><p>break;</p></blockquote><blockquote><p>rewrite ^/go/([0-9]+)\.html$ /?p=$1 permanent;</p><p>break;</p></blockquote><p>再推荐一个在线转换 <strong>Apache </strong>的<strong> .htaccess</strong> 和<strong> Nginx</strong> 伪静态规则的网站：<a title="Convert Apache Htaccess To Nginx" href="http://www.anilcetin.com/convert-apache-htaccess-to-nginx/" target="_blank">http://www.anilcetin.com/convert-apache-htaccess-to-nginx/</a></p><p>===</p><p><strong>再再次PS：</strong>因为短网址的原理是301转向，所以害怕搜索引擎的童鞋就别冒险了哈哈。</p><p>=======</p><p>OK，到了没两天推荐一个博客一个 Twitter 的时间了，本期按照惯例，还是一男一女，嗯，开始推荐咯：</p><p>=======</p><p>==========下面的东东与本文无关============</p><p>今日推荐<a href="http://zou.lu/" target="_blank">博客</a>：</p><p>标题：<a href="http://kramon.net/" target="_blank"><strong>老K博客，高山仰止,景行行止</strong></a></p><p>博主：<a href="http://kramon.net/" target="_blank"><strong>Kramon</strong></a></p><p>地址：<a href="http://kramon.net/" target="_blank"><strong>http://kramon.net/</strong></a></p><p>自我介绍：出身于一个平凡的无产阶级家庭，自由职业，偶游走于各国，直坚信双手可以改变现状。很愤世嫉俗，因为生存的环境委实是一个值得任何一个有理想、有追求、有抱负的青年抱怨的。也许，离开这样一个地方，就不会那么感慨了。生活所迫，喜欢研究外语，另外，我还有一个未婚妻，在法国深造，她是我生活的最主要的动力之一。</p><p>入榜理由：<strong>老K</strong>，一个目前回国瞎转悠的美籍华人，一个有思想的热血青年，一个……总之很厉害的淫，研究外语好多年，雅思托福啥的方面都是砖家，我和老K彻夜长谈，讨论关于人生大业的问题……说过头了，总之，老K是一个值得交往的朋友！</p><p>====</p><p>今日推荐 <a href="https://twitter.com/Showfom"><span style="color: #ff8040;">Twitter</span></a><strong></strong>：</p><p>姓名：<a href="https://twitter.com/vvchn" target="_blank"><strong><span style="color: #ff8040;">@vvchn</span></strong></a></p><p>地址：<a href="https://twitter.com/vvchn" target="_blank"><strong><span style="color: #ff8040;">https://twitter.com/vvchn</span></strong></a></p><p>自我介绍：╚囧╗ ╚囧╗本人言论完全来自网络，没有一个字来自本人原创，拒绝跨省追捕，欢迎绿坝拦截╔囧╗╔囧╝</p><p>入榜理由：曾经因为小时候留短发被人误以为是男孩，曾经因为上女厕所被阿姨叫住，曾经被某位女生暗恋一年以后才知道自己不是拉拉，曾经……这就是<strong> VV姐</strong>，一个在 <strong>Twitter </strong>上很神秘的姐姐，关于VV姐的性别，我说过：“不管<strong> VV姐</strong> 是男的还是女的，我都叫她 <strong>VV姐</strong> ~”，嗯，性别就别讨论了，总之不是 <strong>man</strong> 就对了，<strong>VV姐</strong> 经常观察国家时事，偶尔发表自己一针见血的见解，灰常值得<strong>Follow</strong></p><p>========</p><p>要我推荐的朋友麻烦私下联系我，哦O(∩_∩)O哈哈~<br /> 本文部分参考： <a href="http://5thirtyone.com/archives/2075" title="WordPress: Tweet shortened URL of current page to Twitter">WordPress: Tweet shortened URL of current page to Twitter</a></p><h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://zou.lu/wordcamp-2009-ends/" title="WordCamp 2009 归来">WordCamp 2009 归来</a> (154)</li><li><a href="http://zou.lu/gtalk-group/" title="中文 WordPress 博主的 Gtalk 群，欢迎加围观、群殴">中文 WordPress 博主的 Gtalk 群，欢迎加围观、群殴</a> (74)</li><li><a href="http://zou.lu/we-love-wp/" title="We Love WP &#8211; 稀奇古怪的网站也和我们同一个内核">We Love WP &#8211; 稀奇古怪的网站也和我们同一个内核</a> (67)</li><li><a href="http://zou.lu/notes-for-wordpress-28-upgrading/" title="升级到 WordPress 2.8 以后要注意的事项">升级到 WordPress 2.8 以后要注意的事项</a> (61)</li><li><a href="http://zou.lu/wordpress-28-released/" title="WordPress 2.8 正式版发布">WordPress 2.8 正式版发布</a> (36)</li><li><a href="http://zou.lu/wordpress-cache-plugin-benchmarks/" title="WordPress 缓存插件性能对比">WordPress 缓存插件性能对比</a> (98)</li><li><a href="http://zou.lu/do-not-use-wordpress-if-you-have-a-high-traffic-website/" title="如果要把网站做大，切忌 WordPress 的滥用">如果要把网站做大，切忌 WordPress 的滥用</a> (114)</li><li><a href="http://zou.lu/let-it-snow/" title="一句话代码让你的博客也下雪">一句话代码让你的博客也下雪</a> (66)</li><li><a href="http://zou.lu/remove-links-in-wordpress-comments/" title="移除 WordPress 评论者和评论内容链接">移除 WordPress 评论者和评论内容链接</a> (69)</li><li><a href="http://zou.lu/use-cook-free-domain-for-your-wordpress/" title="提高 WordPress 速度之独立域名图床">提高 WordPress 速度之独立域名图床</a> (171)</li></ul><hr /><div style="padding: 5px 10px; background: rgb(243, 245, 252) none repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;"><p>© from <a href="//zou.lu/?from=feed">走点路博客</a>, 2009/07/21. | <a href="http://zou.lu/shortened-url-of-current-page-to-twitter/">打造 WordPress 的简易短网址</a> | <a href="http://zou.lu/shortened-url-of-current-page-to-twitter/#comments">77 只留言鸟</a> <br /> Tags： <a href="http://zou.lu/tags/htaccess/" rel="tag">.htaccess</a>, <a href="http://zou.lu/tags/twitter/" rel="tag">Twitter</a>, <a href="http://zou.lu/tags/wordpress/" rel="tag">WordPress</a>, <a href="http://zou.lu/tags/wordpress-28/" rel="tag">WordPress 2.8</a> | <a href="//zou.lu/?p=81">Link</a></p></div>]]></content:encoded> <wfw:commentRss>http://zou.lu/shortened-url-of-current-page-to-twitter/feed/</wfw:commentRss> <slash:comments>77</slash:comments> </item> <item><title>升级到 WordPress 2.8 以后要注意的事项</title><link>http://zou.lu/notes-for-wordpress-28-upgrading/</link> <comments>http://zou.lu/notes-for-wordpress-28-upgrading/#comments</comments> <pubDate>Sat, 13 Jun 2009 07:33:49 +0000</pubDate> <dc:creator>Showfom</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Widgets]]></category> <category><![CDATA[WordPress 2.8]]></category> <category><![CDATA[WordPress升级]]></category> <category><![CDATA[WordPress插件]]></category><guid isPermaLink="false">http://zou.lu/?p=60</guid> <description><![CDATA[由于搬家至 Wopus ，索性就直接升级到 WordPress 2.8，没想到出现了一系列问题。 1、插件不兼容 这是最头疼的，由于不想使用 去除分类的 category ，所以，我就直接没上传 Redirection 插件，然后发布文章却发现无法增加 Tags ，真是郁闷啊。 然后本地下载，本地测试，最后发现还是 Redirection 插件的问题。 状况： ①直接更新而没禁用或者删除 Redirection 插件的话，所有页面都会显示 Call to undefined method WordPress_Module::_weak_escape()&#160; ②发布文章不能更新或者增加 Tags 解决方法： 直接删除 Redirection 插件的文件夹或者重命名即可。 2、系统文件改变 由于 WordPress 2.8 的 Widgets 系统增强，所以内置的 Widgets 文件也改变较大。 以前的 wp-includes\widgets.php 只是一个引用的文件，真正的内容全部在 wp-includes\defalut-widgets.php ，而且功能N多，嗯，好好看看代码学习学习。 3、记得备份自己的表情文件 通常在 wp-includes\images\smilies 目录下，假如以前用的是自己上传覆盖的表情，切记备份，后悔就来不及了。 话说，这套表情也太老了，难道 WordPress 的那帮人都是些怀旧的？ 4、数据库切记备份 别的还好，只要数据库在，就不怕，万一数据库没备份而导致升级失败，那这世上真的没有后悔药了。 [...]]]></description> <content:encoded><![CDATA[<p>由于搬家至 <strong>Wopus</strong> ，索性就直接升级到<strong> WordPress 2.8</strong>，没想到出现了一系列问题。</p><p> <span id="more-60"></span><br /><h2>1、插件不兼容</h2><p>这是最头疼的，由于不想使用 <a title="去除 WordPress 分类 URL 的 category" href="http://zou.lu/4-ways-to-remove-category-from-your-wordpress-url/" target="_blank">去除分类的 category</a> ，所以，我就直接没上传<strong> Redirection</strong> 插件，然后发布文章却发现无法增加 <strong>Tags</strong> ，真是郁闷啊。</p><p>然后本地下载，本地测试，最后发现还是 <strong>Redirection</strong> 插件的问题。</p><p>状况：</p><p>①直接更新而没禁用或者删除 <strong>Redirection </strong>插件的话，所有页面都会显示</p><blockquote><p>Call to undefined method WordPress_Module::_weak_escape()&#160;</p></blockquote><p>②发布文章不能更新或者增加 <strong>Tags </strong></p><p>解决方法：</p><blockquote><p>直接删除 Redirection 插件的文件夹或者重命名即可。</p></blockquote><h2>2、系统文件改变</h2><p>由于 <strong>WordPress 2.8</strong> 的 <strong>Widgets</strong> 系统增强，所以内置的 <strong>Widgets 文件</strong>也改变较大。</p><p>以前的 <strong>wp-includes\widgets.php</strong> 只是一个引用的文件，真正的内容全部在 <strong>wp-includes\defalut-widgets.php</strong> ，而且功能N多，嗯，好好看看代码学习学习。</p><h2>3、记得备份自己的表情文件</h2><p>通常在 <strong>wp-includes\images\smilies</strong> 目录下，假如以前用的是自己上传覆盖的表情，切记备份，后悔就来不及了。</p><p>话说，这套表情也太老了，难道 <strong>WordPress </strong>的那帮人都是些怀旧的？</p><h2>4、数据库切记备份</h2><p>别的还好，只要数据库在，就不怕，万一数据库没备份而导致升级失败，那这世上真的没有后悔药了。</p><h2>5、养成本地写博的好习惯</h2><p>我是一直反对在后台写博客，至少不能直接在后台写，假如你喜欢在后台写，也应该是本地写好以后复制过去，否则在没用自动保存的情况下，损失会很大，而用了自动保存，数据库会很大，哎，两难的事情。所以，去年开始我就一直用 <strong>Windows Live Writer</strong> 写博客，自己的好习惯，是博客成功的一半。</p><h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://zou.lu/mobilepress-themes-fixed/" title="MobilePress 主题汉化并修改">MobilePress 主题汉化并修改</a> (79)</li><li><a href="http://zou.lu/comment-info-detector/" title="WordPress 显示留言者信息插件 &#8211; Comment Info Detector">WordPress 显示留言者信息插件 &#8211; Comment Info Detector</a> (277)</li><li><a href="http://zou.lu/careful-about-wordpress-plugins/" title="千里之堤溃于蚁穴 &#8211; 慎用 WordPress 插件">千里之堤溃于蚁穴 &#8211; 慎用 WordPress 插件</a> (135)</li><li><a href="http://zou.lu/comments-text-replace/" title="WordPress 精简版评论文明用语插件">WordPress 精简版评论文明用语插件</a> (119)</li><li><a href="http://zou.lu/shortened-url-of-current-page-to-twitter/" title="打造 WordPress 的简易短网址">打造 WordPress 的简易短网址</a> (77)</li><li><a href="http://zou.lu/wordpress-plugins-i-used/" title="我使用的 WordPress 插件">我使用的 WordPress 插件</a> (97)</li><li><a href="http://zou.lu/wordpress-28-released/" title="WordPress 2.8 正式版发布">WordPress 2.8 正式版发布</a> (36)</li><li><a href="http://zou.lu/optimize-wordpress-database-query-middle-object-cache/" title="优化你的 WordPress 之减少数据库查询次数（中级篇补充之 Object Cache）">优化你的 WordPress 之减少数据库查询次数（中级篇补充之 Object Cache）</a> (48)</li><li><a href="http://zou.lu/optimize-wordpress-database-query-middle/" title="优化你的 WordPress 之减少数据库查询次数（中级篇）">优化你的 WordPress 之减少数据库查询次数（中级篇）</a> (32)</li><li><a href="http://zou.lu/auto-hishslide-wordpress-plugin/" title="Auto HighSlide &#8211; 真正自动增加 WordPress 的 HighSlide 图片效果插件">Auto HighSlide &#8211; 真正自动增加 WordPress 的 HighSlide 图片效果插件</a> (248)</li></ul><hr /><div style="padding: 5px 10px; background: rgb(243, 245, 252) none repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;"><p>© from <a href="//zou.lu/?from=feed">走点路博客</a>, 2009/06/13. | <a href="http://zou.lu/notes-for-wordpress-28-upgrading/">升级到 WordPress 2.8 以后要注意的事项</a> | <a href="http://zou.lu/notes-for-wordpress-28-upgrading/#comments">61 只留言鸟</a> <br /> Tags： <a href="http://zou.lu/tags/widgets/" rel="tag">Widgets</a>, <a href="http://zou.lu/tags/wordpress/" rel="tag">WordPress</a>, <a href="http://zou.lu/tags/wordpress-28/" rel="tag">WordPress 2.8</a>, <a href="http://zou.lu/tags/wordpress%e5%8d%87%e7%ba%a7/" rel="tag">WordPress升级</a>, <a href="http://zou.lu/tags/wordpress%e6%8f%92%e4%bb%b6/" rel="tag">WordPress插件</a> | <a href="//zou.lu/?p=60">Link</a></p></div>]]></content:encoded> <wfw:commentRss>http://zou.lu/notes-for-wordpress-28-upgrading/feed/</wfw:commentRss> <slash:comments>61</slash:comments> </item> <item><title>WordPress 2.8 正式版发布</title><link>http://zou.lu/wordpress-28-released/</link> <comments>http://zou.lu/wordpress-28-released/#comments</comments> <pubDate>Thu, 11 Jun 2009 02:30:21 +0000</pubDate> <dc:creator>Showfom</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress 2.8]]></category><guid isPermaLink="false">http://zou.lu/wordpress-28-released/</guid> <description><![CDATA[这个，还真的是在美国时间6月10号出来了，不过我暂时并不打算升级，一是觉得没必要，二是因为较大改变的功能是主题一键安装和搜索，对于我们这些 WordPress 老油条 来说真的没啥必要，建议刚开始学习 WordPress 的童鞋可以放心地安装新版本或者是升级。 PS：升级最头痛的事情莫过于表情的图片得备份然后再覆盖，WordPress 为啥要把表情图片放到系统文件夹 wp-includes 里去哎，直接放到每个主题文件夹里不是更好，只要对应主题即可更新表情图片。 再次PS：打算在暑假的时候更新自己的主题，现在用的任平生的主题也已经差不多一个多月了，不符合偶一个月换一次主题的癖好哈哈。 传送门，官方下载地址： http://wordpress.org/wordpress-2.8.zip 相关文章打造 WordPress 的简易短网址 (77)升级到 WordPress 2.8 以后要注意的事项 (61)WordPress 缓存插件性能对比 (98)如果要把网站做大，切忌 WordPress 的滥用 (114)一句话代码让你的博客也下雪 (66)移除 WordPress 评论者和评论内容链接 (69)提高 WordPress 速度之独立域名图床 (171)WordPress Jam &#8211; WP 建站服务一条龙 (64)MobilePress 主题汉化并修改 (79)换上私人主题 + 清理友链 (192) © from 走点路博客, 2009/06/11. &#124; WordPress 2.8 正式版发布 &#124; 36 只留言鸟 Tags： [...]]]></description> <content:encoded><![CDATA[<p>这个，还真的是在<strong><font color="#0080ff"><a title="WordPress 2.8 Released" href="http://wordpress.org/development/2009/06/wordpress-28/">美国时间6月10号</a></font></strong>出来了，不过我暂时并不打算升级，一是觉得没必要，二是因为较大改变的功能是主题一键安装和搜索，对于我们这些 <strong><font color="#0080ff">WordPress 老油条</font></strong> 来说真的没啥必要，建议刚开始学习 <strong><font color="#0080ff"><a title="WordPress" href="http://zou.lu/">WordPress</a></font></strong> 的童鞋可以放心地安装新版本或者是升级。</p><p><strong><font color="#ff8040">PS</font></strong>：升级最头痛的事情莫过于表情的图片得备份然后再覆盖，<strong><font color="#0080ff">WordPress</font></strong> 为啥要把表情图片放到系统文件夹 <strong><font color="#0080ff">wp-includes</font></strong> 里去哎，直接放到每个主题文件夹里不是更好，只要对应主题即可更新表情图片。</p><p>再次<strong><font color="#ff8040">PS</font></strong>：打算在暑假的时候更新自己的主题，现在用的任平生的主题也已经差不多一个多月了，不符合偶一个月换一次主题的癖好哈哈。</p><p> <span id="more-57"></span><p><a href="http://zou.lu/files/WordPress2.8_93CD/WordPress2.8Released.jpg" class="highslide-image" onclick="return hs.expand(this);"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="WordPress 2.8 正式版发布" border="0" alt="WordPress 2.8 正式版发布" src="http://zou.lu/files/WordPress2.8_93CD/WordPress2.8Released_thumb.jpg" width="629" height="378" /></a></p><p>传送门，官方下载地址：</p><p><a title="WordPress 2.8" href="http://wordpress.org/latest.zip">http://wordpress.org/wordpress-2.8.zip</a></p><h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://zou.lu/shortened-url-of-current-page-to-twitter/" title="打造 WordPress 的简易短网址">打造 WordPress 的简易短网址</a> (77)</li><li><a href="http://zou.lu/notes-for-wordpress-28-upgrading/" title="升级到 WordPress 2.8 以后要注意的事项">升级到 WordPress 2.8 以后要注意的事项</a> (61)</li><li><a href="http://zou.lu/wordpress-cache-plugin-benchmarks/" title="WordPress 缓存插件性能对比">WordPress 缓存插件性能对比</a> (98)</li><li><a href="http://zou.lu/do-not-use-wordpress-if-you-have-a-high-traffic-website/" title="如果要把网站做大，切忌 WordPress 的滥用">如果要把网站做大，切忌 WordPress 的滥用</a> (114)</li><li><a href="http://zou.lu/let-it-snow/" title="一句话代码让你的博客也下雪">一句话代码让你的博客也下雪</a> (66)</li><li><a href="http://zou.lu/remove-links-in-wordpress-comments/" title="移除 WordPress 评论者和评论内容链接">移除 WordPress 评论者和评论内容链接</a> (69)</li><li><a href="http://zou.lu/use-cook-free-domain-for-your-wordpress/" title="提高 WordPress 速度之独立域名图床">提高 WordPress 速度之独立域名图床</a> (171)</li><li><a href="http://zou.lu/wpjam/" title="WordPress Jam &#8211; WP 建站服务一条龙">WordPress Jam &#8211; WP 建站服务一条龙</a> (64)</li><li><a href="http://zou.lu/mobilepress-themes-fixed/" title="MobilePress 主题汉化并修改">MobilePress 主题汉化并修改</a> (79)</li><li><a href="http://zou.lu/private-themes/" title="换上私人主题 + 清理友链">换上私人主题 + 清理友链</a> (192)</li></ul><hr /><div style="padding: 5px 10px; background: rgb(243, 245, 252) none repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;"><p>© from <a href="//zou.lu/?from=feed">走点路博客</a>, 2009/06/11. | <a href="http://zou.lu/wordpress-28-released/">WordPress 2.8 正式版发布</a> | <a href="http://zou.lu/wordpress-28-released/#comments">36 只留言鸟</a> <br /> Tags： <a href="http://zou.lu/tags/wordpress/" rel="tag">WordPress</a>, <a href="http://zou.lu/tags/wordpress-28/" rel="tag">WordPress 2.8</a> | <a href="//zou.lu/?p=57">Link</a></p></div>]]></content:encoded> <wfw:commentRss>http://zou.lu/wordpress-28-released/feed/</wfw:commentRss> <slash:comments>36</slash:comments> </item> </channel> </rss>
