<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>《不需要插件的wordpress留言本》的评论</title>
	<atom:link href="http://www.yuxg.com/60.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yuxg.com/60.html</link>
	<description>意游天下行</description>
	<lastBuildDate>Wed, 18 Jan 2012 18:09:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>作者：雨人</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-2136</link>
		<dc:creator>雨人</dc:creator>
		<pubDate>Wed, 31 Mar 2010 05:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-2136</guid>
		<description>@上海网管联盟, 怎么在贵站没有看见，意天行的友情链接呢？</description>
		<content:encoded><![CDATA[<p>@上海网管联盟, 怎么在贵站没有看见，意天行的友情链接呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：上海网管联盟</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-2131</link>
		<dc:creator>上海网管联盟</dc:creator>
		<pubDate>Sat, 27 Mar 2010 04:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-2131</guid>
		<description>上海网管联盟 http://www.cmiis.cn/ 申请连接</description>
		<content:encoded><![CDATA[<p>上海网管联盟 <a href="http://www.cmiis.cn/" rel="nofollow">http://www.cmiis.cn/</a> 申请连接</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：SErHo</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-1959</link>
		<dc:creator>SErHo</dc:creator>
		<pubDate>Thu, 12 Nov 2009 07:46:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-1959</guid>
		<description>@雨人, 真是很感谢，去试一下</description>
		<content:encoded><![CDATA[<p>@雨人, 真是很感谢，去试一下</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：雨人</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-1922</link>
		<dc:creator>雨人</dc:creator>
		<pubDate>Thu, 05 Nov 2009 01:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-1922</guid>
		<description>@SErHo, 留言倒序输出
找到：
&lt;pre lang=&quot;PHP&quot; line=&quot;n&quot;  colla=&quot;+&quot;&gt;
&lt;?php foreach ($comments as $comment) ;?&gt;
&lt;/pre&gt;
//替换成：
&lt;pre lang=&quot;PHP&quot; line=&quot;n&quot;  colla=&quot;+&quot;&gt;
&lt;?php foreach (array_reverse($comments) as $comment) ;?&gt;
&lt;/pre&gt;
最好另外为留言本做个模板，按我文章内的方法就行
不然，所有的文章内的留言都会变成倒叙的</description>
		<content:encoded><![CDATA[<p>@SErHo, 留言倒序输出<br />
找到：</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p60code1'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p601"><td class="code" id="p60code1"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$comments</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>//替换成：</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p60code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p602"><td class="code" id="p60code2"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><a href="http://www.php.net/array_reverse"><span style="color: #990000;">array_reverse</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comments</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>最好另外为留言本做个模板，按我文章内的方法就行<br />
不然，所有的文章内的留言都会变成倒叙的</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：SErHo</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-1921</link>
		<dc:creator>SErHo</dc:creator>
		<pubDate>Wed, 04 Nov 2009 23:43:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-1921</guid>
		<description>我直接加一个可以评论的页面就完事了,只不过不知道如何让留言按时间倒序输出</description>
		<content:encoded><![CDATA[<p>我直接加一个可以评论的页面就完事了,只不过不知道如何让留言按时间倒序输出</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：北方熊之舞</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-897</link>
		<dc:creator>北方熊之舞</dc:creator>
		<pubDate>Fri, 16 Jan 2009 01:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-897</guid>
		<description>呵呵~~~来冒个泡~~</description>
		<content:encoded><![CDATA[<p>呵呵~~~来冒个泡~~</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：雨人</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-698</link>
		<dc:creator>雨人</dc:creator>
		<pubDate>Wed, 14 Jan 2009 22:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-698</guid>
		<description>开平你好，本博客下除了网文摘抄分类的文章之外，全部为原创文章</description>
		<content:encoded><![CDATA[<p>开平你好，本博客下除了网文摘抄分类的文章之外，全部为原创文章</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：开平</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-674</link>
		<dc:creator>开平</dc:creator>
		<pubDate>Wed, 14 Jan 2009 19:09:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-674</guid>
		<description>老大啊。上次我问你的文章是不是原创的你还没答我呢。。麻烦有空了把答案发我邮箱里</description>
		<content:encoded><![CDATA[<p>老大啊。上次我问你的文章是不是原创的你还没答我呢。。麻烦有空了把答案发我邮箱里</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：雨人</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-570</link>
		<dc:creator>雨人</dc:creator>
		<pubDate>Wed, 14 Jan 2009 06:35:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-570</guid>
		<description>@导航网，你说的具体是哪篇文章？</description>
		<content:encoded><![CDATA[<p>@导航网，你说的具体是哪篇文章？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：导航网</title>
		<link>http://www.yuxg.com/60.html/comment-page-1#comment-484</link>
		<dc:creator>导航网</dc:creator>
		<pubDate>Tue, 13 Jan 2009 20:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.sunnun.cn/?p=60#comment-484</guid>
		<description>博主的文章不错。是自己写的吗？我要转载一下，请问你是原作者吗？</description>
		<content:encoded><![CDATA[<p>博主的文章不错。是自己写的吗？我要转载一下，请问你是原作者吗？</p>
]]></content:encoded>
	</item>
</channel>
</rss>

