<?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; 插件</title>
	<atom:link href="http://coolife.org/tag/%e6%8f%92%e4%bb%b6/feed" rel="self" type="application/rss+xml" />
	<link>http://coolife.org</link>
	<description>冲动是魔鬼！！！</description>
	<lastBuildDate>Thu, 13 Oct 2011 02:36:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>WP插件之WP-Stickiness</title>
		<link>http://coolife.org/2007/09/wp-stickiness.html</link>
		<comments>http://coolife.org/2007/09/wp-stickiness.html#comments</comments>
		<pubDate>Thu, 13 Sep 2007 04:52:59 +0000</pubDate>
		<dc:creator>aRu</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.coolife.org/?p=151</guid>
		<description><![CDATA[这个插件是“我爱水煮鱼”将Where did they go from，Contextual Related Posts 和 Random Posts三个插件整合在一起形成的。（这三个插件的作用是：用于记录读者在你网站上的浏览记录，显示相关日志和显示随机日志） 下面是原文部分关于安装和使用的说明： 安装非常简单，解压，上传 wp-stickiness.php 文件到插件目录，然后激活即可。 然后在你想显示列表的地方，输入 该插件需要你的 footer.php 函数中含有 函数或者 函数（两个只要一个就行了，多了是不好的），如果没有的话，这系统不会记录被浏览的历史记录，所以刚开始的时候也不会显示浏览记录。 安装之后，历史浏览记录是不显示的，因为刚开始还没有记录，需要等一段时间之后（时间长短取决于你博客的流量）才会显示。 默认情况下，随机日志是不显示的，只有在该片日志没有相关日志的情况下才显示。 默认情况下，这些列表都是最多只显示5篇日志。当然你可以编辑插件文件来修改。在插件文件中以下带代码是来修改各个最大值的： $max_history = 5; // 历史浏览记录显示的最大值 $max_related = 5; // 相关日志显示的最大值 $max_random = 5; // 随机日志显示的最大值 你也可以通过下面代码修改各个记录的标题： $history_text = “ 读过这篇日志的读者同时也读了： “; // 历史浏览记录子标题 $related_text = “ 相关日志： “; // 相关日志子标题 $random_text = [...]]]></description>
			<content:encoded><![CDATA[<p style="text-indent:2em">这个插件是“<a href="http://fairyfish.net/2007/06/22/plugin-wp-stickiness/">我爱水煮鱼</a>”将<a href="http://weblogtoolscollection.com/archives/2007/06/04/wp-plugin-where-did-they-go-from-here/">Where did they go from</a>，<a href="http://weblogtoolscollection.com/archives/2005/11/27/wp-plugin-contextual-related-posts/">Contextual Related Posts </a>和 <a href="http://rmarsh.com/plugins/random-posts/">Random Posts</a>三个插件整合在一起形成的。（这三个插件的作用是：用于记录读者在你网站上的浏览记录，显示相关日志和显示随机日志）</p>
<p>下面是原文部分关于安装和使用的说明：</p>
<blockquote><p>
安装非常简单，解压，上传 wp-stickiness.php 文件到插件目录，然后激活即可。<br />
然后在你想显示列表的地方，输入<coolcode linenum="0"> <?php wp_stickiness(); ?></coolcode></p>
<p>该插件需要你的 footer.php 函数中含有 <coolcode linenum="0"><?php wp_footer(); ?> </coolcode>函数或者 <coolcode linenum="0"><?php do_action('wp_footer'); ?> </coolcode>函数（两个只要一个就行了，多了是不好的），如果没有的话，这系统不会记录被浏览的历史记录，所以刚开始的时候也不会显示浏览记录。</p>
<p>安装之后，历史浏览记录是不显示的，因为刚开始还没有记录，需要等一段时间之后（时间长短取决于你博客的流量）才会显示。</p>
<p>默认情况下，随机日志是不显示的，只有在该片日志没有相关日志的情况下才显示。</p>
<p>默认情况下，这些列表都是最多只显示5篇日志。当然你可以编辑插件文件来修改。在插件文件中以下带代码是来修改各个最大值的：<br />
<coolcode linenum="0"><br />
$max_history = 5; // 历史浏览记录显示的最大值<br />
$max_related = 5; // 相关日志显示的最大值<br />
$max_random = 5; // 随机日志显示的最大值</coolcode></p>
<p>你也可以通过下面代码修改各个记录的标题：<br />
<coolcode linenum="0"><br />
$history_text = “<br />
<h3>读过这篇日志的读者同时也读了：</h3>
<p>“; // 历史浏览记录子标题<br />
$related_text = “<br />
<h3>相关日志：</h3>
<p>“; // 相关日志子标题<br />
$random_text = “<br />
<h3>随机日志</h3>
<p>“; // 随机日志子标题</coolcode>
</p></blockquote>
<p><a href="http://www.box.net/shared/1kxfb48ncx">下载WP-Stickiness</a></p>
<p>PS：如果使用后出现如下提示<br />
<coolcode linenum="0"><br />
WordPress database error: [The used table type doesn't support FULLTEXT indexes]<br />
SELECT ID,post_title,post_content,post_excerpt,post_date, MATCH(post_name,post_content) AGAINST (&#8216;wp-stickiness&#8217;) AS score FROM wp_posts WHERE MATCH (post_name,post_content) AGAINST (&#8216;wp-stickiness&#8217;) and post_status = &#8216;publish&#8217; and id <> 176 LIMIT 0,5<br />
</coolcode><br />
那就意味着空间提供商的mysql不支持全文本索引，需要联系空间商解决。遗憾的是我现在的空间商不给开启全文本索引，也就是说没法用了，汗一个。</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9233043179276969";
/* 468x60, 创建于 07-11-17 */
google_ad_slot = "3705074307";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p> ]]></content:encoded>
			<wfw:commentRss>http://coolife.org/2007/09/wp-stickiness.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Opera屏蔽广告插件-CPP adblock</title>
		<link>http://coolife.org/2007/07/opera-adblock.html</link>
		<comments>http://coolife.org/2007/07/opera-adblock.html#comments</comments>
		<pubDate>Mon, 23 Jul 2007 10:28:26 +0000</pubDate>
		<dc:creator>aRu</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[adblock]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[屏蔽]]></category>
		<category><![CDATA[广告]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.coolife.org/?p=124</guid>
		<description><![CDATA[Opera其实是个蛮不错的浏览器，速度快，cpu等资源占用小。但是对于我来说它自带的广告屏蔽功能实在是太弱了，基本可以忽略不计。而js的屏蔽又会导致速度变慢及资源占用高。不过现在不同了，有牛人做出了类似firefox adblock plus插件功能的cpp adblock。 CPP adblock（v.05beta2）下载 具体的安装步骤较多，可以参考压缩包里的说明文件。 这个插件不是“绿色”安装，需要手动修改Opera的配置文件，考虑到再删除的话也会比较麻烦，所以不适合不太懂软件及懒人使用。我个人感觉这一点也是造成目前Opera市场影响力小的一个重要原因——开放性不够好。而实际使用的效果也不是很完美，部分iframe的广告还是不能屏蔽，希望再正式版本的时候能够完美。]]></description>
			<content:encoded><![CDATA[<p style="text-indent:2em">Opera其实是个蛮不错的浏览器，速度快，cpu等资源占用小。但是对于我来说它自带的广告屏蔽功能实在是太弱了，基本可以忽略不计。而js的屏蔽又会导致速度变慢及资源占用高。不过现在不同了，有牛人做出了类似firefox adblock plus插件功能的cpp adblock。</p>
<p><a href="http://www.91files.com/?RFML1C5IAXM3DMA4DSL1">CPP adblock（v.05beta2）下载</a></p>
<p>具体的安装步骤较多，可以参考压缩包里的说明文件。</p>
<p style="text-indent:2em">这个插件不是“绿色”安装，需要手动修改Opera的配置文件，考虑到再删除的话也会比较麻烦，所以不适合不太懂软件及懒人使用。我个人感觉这一点也是造成目前Opera市场影响力小的一个重要原因——开放性不够好。而实际使用的效果也不是很完美，部分iframe的广告还是不能屏蔽，希望再正式版本的时候能够完美。</p>
]]></content:encoded>
			<wfw:commentRss>http://coolife.org/2007/07/opera-adblock.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress插件之Ajax Edit Comments</title>
		<link>http://coolife.org/2007/06/wp-ajax-edit-comments.html</link>
		<comments>http://coolife.org/2007/06/wp-ajax-edit-comments.html#comments</comments>
		<pubDate>Thu, 07 Jun 2007 18:23:25 +0000</pubDate>
		<dc:creator>aRu</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.coolife.org/?p=85</guid>
		<description><![CDATA[　　WP Ajax Edit Comments，让访问者在一定时段内可以自行修改留言内容，包括留言人的名字和网址都可以自行更改，使用ajax inline效果。 　　上传激活。Options => Ajax Edit Comments中对时间和允许修改与否作设定，用户只需要单击自己的留言即可修改。 一个很棒的插件，不过发现在装上之后网页打开速度变慢了，等稍空的时候看看是否能优化一下]]></description>
			<content:encoded><![CDATA[<p>　　<a href="http://www.raproject.com/wordpress/wp-ajax-edit-comments/">WP Ajax Edit Comments</a>，让访问者在一定时段内可以自行修改留言内容，包括留言人的名字和网址都可以自行更改，使用ajax inline效果。<br />
　　上传激活。Options => Ajax Edit Comments中对时间和允许修改与否作设定，用户只需要单击自己的留言即可修改。<br />
      一个很棒的插件，不过发现在装上之后网页打开速度变慢了，等稍空的时候看看是否能优化一下</p>
]]></content:encoded>
			<wfw:commentRss>http://coolife.org/2007/06/wp-ajax-edit-comments.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress插件之All In One SEO Pack</title>
		<link>http://coolife.org/2007/06/wp-all-in-one-seo-pack.html</link>
		<comments>http://coolife.org/2007/06/wp-all-in-one-seo-pack.html#comments</comments>
		<pubDate>Thu, 07 Jun 2007 18:07:21 +0000</pubDate>
		<dc:creator>aRu</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[all-in-one-seo-pack]]></category>
		<category><![CDATA[pack]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.coolife.org/?p=84</guid>
		<description><![CDATA[作用： 1、可以给每篇文章添加独立的关键词； 2、可以给每篇文章添加独立的meta标签； 3、可以给每篇文章添加独立的description； 4、可以给每篇文章添加独立的摘要； 5、可以给每篇文章自动生成摘要； 6、可以防止存档页和首页的内容被抓取，从而防止因重复内容被google降权； 安装和使用： 1. 下载解压后把all_in_one_seo_pack.php上传至/wp-content/plugins/目录。 2. 登录wordpress管理后台激活插件。 3. 到Wordpress 设置 > All in One SEO 中可以看见下面这些选项，把它们填写一下update。 Home Title：你的博客标题 Home Description：你的博客的描述 Home Keywords：填写你的博客的主要关键词，用半角的逗号分开，不用填太多 Rewrite Titles：选中的话所有页面和文章的标题会变成“标题名&#124;博客名”格式，比如我的某篇文章的标题为：“能增加你的博客评论的5个WordPress插件 &#124; WesleyBlog”，建议选中 Use Categories for META keywords： 把分类名称作为META keywords，注意你如果安装了UTW或者Simple Tagging等tag插件，又开启了这些tag插件的Use Categories for META keywords功能的话，建议把这一选项关闭。 Use Category Description as Title：把分类描述作为分类页面的标题，我没选 Use noindex for Categories：告诉搜索引擎不抓取分类页面，选中 Use noindex for [...]]]></description>
			<content:encoded><![CDATA[<p>作用：<br />
1、可以给每篇文章添加独立的关键词；<br />
2、可以给每篇文章添加独立的meta标签；<br />
3、可以给每篇文章添加独立的description；<br />
4、可以给每篇文章添加独立的摘要；<br />
5、可以给每篇文章自动生成摘要；<br />
6、可以防止存档页和首页的内容被抓取，从而防止因重复内容被google降权；</p>
<p>安装和使用：</p>
<p>1. 下载解压后把all_in_one_seo_pack.php上传至/wp-content/plugins/目录。<br />
2. 登录wordpress管理后台激活插件。<br />
3. 到Wordpress 设置 > All in One SEO 中可以看见下面这些选项，把它们填写一下update。</p>
<p>Home Title：你的博客标题<br />
Home Description：你的博客的描述<br />
Home Keywords：填写你的博客的主要关键词，用半角的逗号分开，不用填太多<br />
Rewrite Titles：选中的话所有页面和文章的标题会变成“标题名|博客名”格式，比如我的某篇文章的标题为：“能增加你的博客评论的5个WordPress插件 | WesleyBlog”，建议选中<br />
Use Categories for META keywords： 把分类名称作为META keywords，注意你如果安装了UTW或者Simple Tagging等tag插件，又开启了这些tag插件的Use Categories for META keywords功能的话，建议把这一选项关闭。<br />
Use Category Description as Title：把分类描述作为分类页面的标题，我没选<br />
Use noindex for Categories：告诉搜索引擎不抓取分类页面，选中<br />
Use noindex for Archives：告诉搜索引擎不抓取档案页，选中<br />
Autogenerate Descriptions：自动生成Meta Descriptions，不推荐选中<br />
Max Number of Words in Auto-Generated Descriptions：无所谓的选项</p>
<p>4. 然后可以在文章的撰写页面自定义添加每篇文章的标题和关键字。</p>
<p>更详细的说明请参见<a href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/">All in One SEO Pac</a>k主页。</p>
]]></content:encoded>
			<wfw:commentRss>http://coolife.org/2007/06/wp-all-in-one-seo-pack.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extended Live Archive Plugin安装教程</title>
		<link>http://coolife.org/2007/06/how2use-extended-live-archive.html</link>
		<comments>http://coolife.org/2007/06/how2use-extended-live-archive.html#comments</comments>
		<pubDate>Fri, 01 Jun 2007 08:46:56 +0000</pubDate>
		<dc:creator>aRu</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ELA]]></category>
		<category><![CDATA[Extended-Live-Archive]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.coolife.org/?p=74</guid>
		<description><![CDATA[装上 Extended Live Archive 这个插件已经几天了，一直没有弄好，总算抽空在网上搜索了一下，按照时空驿站的教程，总算搞定了，呵呵。 1，首先保证你的PHP需要4.3以上的版本。 2，然后去Extended Live Archive Plugin下载最新的插件版本。 3，将下载的af-extended-live-archive解压，解压到af-extended-live-archive 文件夹，将该文件夹目录上传到wp-content/plugins里。 4，将本地解压后的af-extended-live-archive 文件夹里的includes目录下的af-ela-style.css上传到/wp-content/themes/default目录下。 附：default是默认的样式，如果你不是默认的样式就上传到你现在正在使用的样式的目录下 5，在本地新建一个PHP文件命名为Archives.php,里面是内容是： &#60;?php /* Template Name: Archives */ ?&#62; &#60;?php get_header(); ?&#62; &#60;?php if(function_exists(&#8216;af_ela_super_archive&#8216;)) { af_ela_super_archive(&#8216;menu_month=月份&#38;menu_cat=文章分类&#8216;); }  ?&#62;  &#60;?php get_footer(); ?&#62; 然后上传到/wp-content/themes/default目录。 附：不一定非要命名为Archives.php，这个你可以自己任意命名。 6，然后在管理区新建一个page，标题为Archives，内容要为空，就是什么也不写，模板要选择Archives，不要选择缺省模板。 7，然后在/wp-content/themes/default目录中的header.php中”/head”之前，加入以下代码： &#60;link rel=“stylesheet“href=“&#60;?php bloginfo(&#8216;template_url&#8217;); ?&#62;/af-ela-style.css“ type=“text/css“ /&#62; 8，最后去插件中心激活Extended Live Archives。]]></description>
			<content:encoded><![CDATA[<p>装上 Extended Live Archive 这个插件已经几天了，一直没有弄好，总算抽空在网上搜索了一下，按照<a target="_blank" href="http://www.alloyli.com/?p=66">时空驿站的教程</a>，总算搞定了，呵呵。</p>
<blockquote><p>1，首先保证你的PHP需要4.3以上的版本。<br />
2，然后去Extended Live Archive Plugin下载最新的插件版本。<br />
3，将下载的af-extended-live-archive解压，解压到af-extended-live-archive 文件夹，将该文件夹目录上传到wp-content/plugins里。<br />
4，将本地解压后的af-extended-live-archive 文件夹里的includes目录下的af-ela-style.css上传到/wp-content/themes/default目录下。<a id="more-66"></a><br />
<font color="#ff0000"><em>附：default是默认的样式，如果你不是默认的样式就上传到你现在正在使用的样式的目录下</em></font><br />
5，在本地新建一个PHP文件命名为Archives.php,里面是内容是：</p>
<ol title="Double click to hide line number." ondblclick="linenumber(this)" class="hl-main ln-show">
<li class="hl-firstline"><span style="color: blue">&lt;?php</span></li>
<li><span style="color: #ffa500">/*</span></li>
<li><span style="color: #ffa500">Template Name: Archives</span></li>
<li><span style="color: #ffa500">*/</span></li>
<li><span style="color: blue">?&gt;</span></li>
<li><span style="color: blue">&lt;?php</span><span style="color: gray"> </span><span style="color: blue">get_header</span><span style="color: olive">()</span><span style="color: gray">; </span><span style="color: blue">?&gt;</span></li>
<li><span style="color: blue">&lt;?php</span><span style="color: gray"> </span><span style="color: green">if</span><span style="color: olive">(</span><span style="color: blue">function_exists</span><span style="color: olive">(</span><span style="color: #8b0000">&#8216;</span><span style="color: red">af_ela_super_archive</span><span style="color: #8b0000">&#8216;</span><span style="color: olive">))</span></li>
<li><span style="color: olive">{</span><span style="color: gray"> </span><span style="color: blue">af_ela_super_archive</span><span style="color: olive">(</span><span style="color: #8b0000">&#8216;</span><span style="color: red">menu_month=月份&amp;menu_cat=文章分类</span><span style="color: #8b0000">&#8216;</span><span style="color: olive">)</span><span style="color: gray">;</span></li>
<li><span style="color: olive">}</span><span style="color: gray"> </span></li>
<li><span style="color: blue">?&gt;</span><span style="color: gray"> </span></li>
<li><span style="color: blue">&lt;?php</span><span style="color: gray"> </span><span style="color: blue">get_footer</span><span style="color: olive">()</span><span style="color: gray">; </span><span style="color: blue">?&gt;</span></li>
</ol>
<p>然后上传到/wp-content/themes/default目录。<br />
<font color="#ff0000"><em>附：不一定非要命名为Archives.php，这个你可以自己任意命名。</em></font><br />
6，然后在管理区新建一个page，标题为Archives，内容要为空，就是什么也不写，模板要选择Archives，不要选择缺省模板。<br />
7，然后在/wp-content/themes/default目录中的header.php中”/head”之前，加入以下代码：</p>
<ol title="Double click to hide line number." ondblclick="linenumber(this)" class="hl-main ln-show">
<li class="hl-firstline"><span style="color: olive">&lt;</span><span style="color: green">link</span><span style="color: gray"> </span><span style="color: #00008b">rel</span><span style="color: gray">=</span><span style="color: #8b0000">“</span><span style="color: red">stylesheet</span><span style="color: #8b0000">“</span><span style="color: #00008b">href</span><span style="color: gray">=</span><span style="color: #8b0000">“</span><span style="color: red">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;/af-ela-style.css</span><span style="color: #8b0000">“</span><span style="color: gray"> </span><span style="color: #00008b">type</span><span style="color: gray">=</span><span style="color: #8b0000">“</span><span style="color: red">text/css</span><span style="color: #8b0000">“</span><span style="color: gray"> </span><span style="color: olive">/&gt;</span></li>
</ol>
<p>8，最后去插件中心激活Extended Live Archives。</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://coolife.org/2007/06/how2use-extended-live-archive.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FireFox插件之Gladder</title>
		<link>http://coolife.org/2007/05/firefox-plugin-gladder.html</link>
		<comments>http://coolife.org/2007/05/firefox-plugin-gladder.html#comments</comments>
		<pubDate>Thu, 10 May 2007 01:00:17 +0000</pubDate>
		<dc:creator>aRu</dc:creator>
				<category><![CDATA[软件]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gladder]]></category>
		<category><![CDATA[代理]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.coolife.org/?p=35</guid>
		<description><![CDATA[现在G-F-W已经越修越高，感觉就快世界“大同”了。为了不被严重影响网络浏览，现在有很多的办法，比如用“Tor”之类的软件，但是个人觉得Tor太麻烦了一点，现在FireFox有个插件Gladder可以实现实时代理，只需要设置需要通过代理访问的网站，即可自然浏览的时候自动使用代理浏览相关网站。 Gladder是一个Firefox插件，名字被解释为Great Ladder (Ladder for Great FW防火长城之梯)，目标是帮助人们跨过墙访问网站。 点这里进入插件下载安装]]></description>
			<content:encoded><![CDATA[<p>现在G-F-W已经越修越高，感觉就快世界“大同”了。为了不被严重影响网络浏览，现在有很多的办法，比如用“Tor”之类的软件，但是个人觉得Tor太麻烦了一点，现在FireFox有个插件Gladder可以实现实时代理，只需要设置需要通过代理访问的网站，即可自然浏览的时候自动使用代理浏览相关网站。</p>
<p>Gladder是一个Firefox插件，名字被解释为<span style="font-weight: bold">Great Ladder (Ladder for Great FW防火长城之梯)</span>，目标是帮助人们跨过墙访问网站。</p>
<p>点<a href="https://addons.mozilla.org/firefox/2864">这里</a>进入插件下载安装</p>
]]></content:encoded>
			<wfw:commentRss>http://coolife.org/2007/05/firefox-plugin-gladder.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress插件之Feed转向插件：FeedSmith</title>
		<link>http://coolife.org/2007/05/wordpress-plugin-feedsmith.html</link>
		<comments>http://coolife.org/2007/05/wordpress-plugin-feedsmith.html#comments</comments>
		<pubDate>Sat, 05 May 2007 09:01:02 +0000</pubDate>
		<dc:creator>aRu</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.coolife.org/?p=27</guid>
		<description><![CDATA[FeedBurner官方声明采用了Steve Smith的WordPress插件Feedburner Feed Replacement，并且命名为FeedSmith。 该 插件可以不需要修改 .htaccess文件，便能够自动侦测类似http://www.yoursite.com/feed/ 或者 http://www.yoursite.com/wp-rss2.php 的网址而转化成自己定义的、FeedBurner烧制的Feed链接。 访问 ：下载页面  原文使用说明如下： Installation Copy the plugin file, FeedBurner_FeedSmith_Plugin.php into your default WordPress plugin directory, wp-content/plugins/ . Activate the plugin by logging into your WordPress administration area, clicking Plugins, then clicking Activate at the end of the “FeedBurner FeedSmith” row. In the WordPress administration area, [...]]]></description>
			<content:encoded><![CDATA[<p>FeedBurner官方声明采用了Steve Smith的WordPress插件Feedburner Feed Replacement，并且命名为FeedSmith。<br />
该 插件可以不需要修改 .htaccess文件，便能够自动侦测类似http://www.yoursite.com/feed/ 或者 http://www.yoursite.com/wp-rss2.php 的网址而转化成自己定义的、FeedBurner烧制的Feed链接。</p>
<p>访问 ：<a href="http://www.feedburner.com/fb/a/help/wordpress_quickstart">下载页面 </a></p>
<p><span id="more-27"></span></p>
<p>原文使用说明如下：</p>
<p><strong>Installation</strong></p>
<ol>
<li>Copy the plugin file, <em>FeedBurner_FeedSmith_Plugin.php</em> into your default WordPress plugin directory, <em>wp-content/plugins/</em> .</li>
<li>Activate the plugin by logging into your WordPress administration area, clicking <strong>Plugins</strong>, then clicking <strong>Activate</strong> at the end of the “FeedBurner FeedSmith” row.</li>
<li>In the WordPress administration area, begin the configuration by clicking <strong>Options</strong> and then the <strong>FeedBurner FeedSmith</strong> sub-option.</li>
<li>Follow the links to create your FeedBurner feeds, or if they already exist, simply fill in their URLs in the boxes provided.NOTE: If you currently use the old, 2005-vintage version of the Ordered List FeedBurner plugin that generates a FeedBurner-specific URL (an example: www.yoursite.com/feedburner_838196/), that URL is no longer available or necessary. You will have to reset your FeedBurner feed’s <strong>Original Feed</strong> address to now use your standard blog feed address.</li>
<li>Verify your URLs in the text entry fields, and click <strong>Save</strong>.</li>
<li>Now, all of your WordPress feed traffic should be redirected to FeedBurner.</li>
</ol>
<p><strong>Deactivation</strong></p>
<p>To deactivate automatic forwarding of your feed traffic to FeedBurner, deactivate the plugin via the <strong>Plugins</strong> section of your WordPress Administration control panel.</p>
<h3>For WordPress, we recommend the following set of services:</h3>
<ul>
<li><strong>Browser-Friendly Burner</strong>. It makes your feed easy to view and subscribe to when viewed in a web browser.</li>
<li>Podcasting with WordPress? Then you should use <strong>SmartCast™</strong>. It will ensure maximum compatibility for your WordPress podcast feed. (Be sure to <a href="http://www.feedburner.com/fb/a/help/wordpress_quickstart#podcast">check your feed settings</a> if you plan to podcast with WordPress.)</li>
<li><strong>TotalStats PRO.</strong> Our premium upgrade to StandardStats gives you much more insight into public awareness of your feed.</li>
</ul>
<h3 id="podcast">Verifying WordPress feed settings for podcasting</h3>
<p>Are you using WordPress for podcasting? If so, it&#8217;s important to know that newer versions of WordPress will automatically convert linked MP3 files to RSS enclosures, but using our SmartCast™ service will guarantee maximum compatibility and reliability for your podcast. Either way, you will need to make sure you&#8217;re publishing a “full text” feed so your links make it into the RSS feed. Here&#8217;s how to verify your original WordPress site feed&#8217;s format:</p>
<ol>
<li>In a new browser window, sign in to your WordPress account.</li>
<li>Once logged in, click the <strong>Options</strong> tab in the upper right part of the screen.</li>
<li>Click the <strong>Reading</strong> sub-tab.<img src="http://www.feedburner.com/fb/images/jumpstart/wordpress-click-reading.gif" />
<p>You should see the “Reading Options” settings page for your site.</li>
<li>On the “Publicity and Feeds” settings page, locate the “Syndication Feeds” section and make sure the “Full text” option is selected.<img src="http://www.feedburner.com/fb/images/jumpstart/wordpress-select-fullpost.gif" /></li>
<li>Click <strong>Update Options</strong>.You should see the message “Options saved.”</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://coolife.org/2007/05/wordpress-plugin-feedsmith.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

