<?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>Jennal's Blog &#187; wordpress</title>
	<atom:link href="http://jennal.cn/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://jennal.cn</link>
	<description>Jennal的技术博客</description>
	<lastBuildDate>Thu, 05 Jan 2012 14:02:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress在首页文章显示评论的方法</title>
		<link>http://jennal.cn/2010/01/31/wordpress%e5%9c%a8%e9%a6%96%e9%a1%b5%e6%96%87%e7%ab%a0%e6%98%be%e7%a4%ba%e8%af%84%e8%ae%ba%e7%9a%84%e6%96%b9%e6%b3%95/</link>
		<comments>http://jennal.cn/2010/01/31/wordpress%e5%9c%a8%e9%a6%96%e9%a1%b5%e6%96%87%e7%ab%a0%e6%98%be%e7%a4%ba%e8%af%84%e8%ae%ba%e7%9a%84%e6%96%b9%e6%b3%95/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 18:56:57 +0000</pubDate>
		<dc:creator>Jennal</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[评论]]></category>

		<guid isPermaLink="false">http://jennal.cn/?p=359</guid>
		<description><![CDATA[前一阵给TTT弄了个博客：http://ttt.jennal.cn/
TTT周五有个要求，她要博客的首页可以看到评论，不要点进去才能看到，那样太麻烦。
在网上找了很多资料，没有找到单独对这个进行介绍的。所以只好找了其他很多资料，加上不断的尝试，昨晚做到快4点，为了防止这次伟大的事件在我的记忆中被删除，还是写下来纪录一下。
要在首页显示评论，我们需要修改四个文件（可能你的文件命名会有些不同，没有关系）。
这些文件都位于wp-content/themes/我的主题目录下

index.php : 首页模板
homepage_comments.php : 评论模板
functions.php : 放回调函数，当然你也可以写在homepage_comments.php里面
comments.css : 放评论的css，当然你也可以写在homepage_comments.php里面

index.php很简单，在你要放评论的地方加上如下代码，当然要放在日志的循环里面：

1
&#60;?php $withcomments=1; comments_template&#40;'/homepage_comments.php'&#41;; ?&#62;

  $withcomments 是一定要设置的，首页默认为0
  至于comments_template这个函数，它会帮你comments先取出来，供你的模板使用。如果有看文档的话，应该知道有一个wp_list_comments函数，这个函数的参数没有接受postId，它是不做数据库查询工作的，具体它是怎么工作的，我也没有深究，只是用到它的回调功能来自定义我们的comments列表，这个在下面会提到。
下面我们来看一下homepage_comments.php怎么写

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
&#60;ul class=&#34;homepage_comments&#34;&#62;
&#60;?php 
	wp_list_comments&#40;array&#40;
		'walker' =&#62; null,
		'max_depth' =&#62; '',
		'style' =&#62; '',
		'callback' =&#62; 'homepage_comments',
		'end-callback' =&#62; null,
		'type' =&#62; 'all',
		'page' =&#62; '',
		'per_page' =&#62; '3',
		'avatar_size' =&#62; 32,
		'reverse_top_level' =&#62; true,
		'reverse_children' =&#62; ''&#41;&#41;;
?&#62;
&#60;/ul&#62;

本来以为直接在comments模板里面写结构和样式就可以了。但是发现不行，除非直接去取$wp_query->comments，但是这样不好，最好还是调用它的API，不然以后版本升级可能要出问题。
这里我把wp_list_comments的全部参数都列出来了，其实没有必要，只要设置你想要的参数就可以了。
这里要补充一下需求，我不希望把所有的评论都列出来，我只要列出最新的3条，而且要倒序，就是最新评论的在最上面。所以我把per_page设置成3，reverse_top_level设置成true。但是这样有个问题，显示的时候是显示最后一页，可能你有4条评论，那它只会显示第4条。在不改变和添加新API的情况下，我没想出解决的办法。如果在看这篇文章的你知道怎么解决，请告诉我。顺便说一下，type如果设置成别的可能会出问题。我之前就学别的模板，把它设置成comments，结果每个post的comment全变成一样了。然后设会all就好了，这个问题也不去深究，有兴趣的自己看源码/wp-includes/comment-template.php。
重点来了，重点是&#8217;callback&#8217; => &#8216;homepage_comments&#8217;这个参数。顾名思义，这是设置回调函数，那homepage_comments就是函数名。为了代码的整洁和统一，我把这个函数放在functions.php里了。那在循环遍历comments的时候，就会调用这个函数。
下面来看functions.php这个文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
&#60;?php
function homepage_comments&#40;$comment, $args, $depth&#41;&#123;
	$GLOBALS&#91;'comment'&#93; = $comment;
	global $commentcount;
	if&#40;!$commentcount&#41; &#123;
		$commentcount = 0;
	&#125;?&#62;
&#160;
&#60;li&#62;&#60;div class=&#34;comment_header&#34;&#62;
&#60;?php if &#40;function_exists&#40;'get_avatar'&#41; [...]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F&from=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Wordpress的API-Key</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F13%2F%25E6%259B%25B4%25E6%2596%25B0%25E4%25BA%2586wordpress%2F&from=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">更新了WordPress</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F13%2F%25E5%25BC%2580%25E6%2594%25BE%25E4%25BA%2586%25E8%25AF%2584%25E8%25AE%25BA%2F&from=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">开放了评论</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F17%2F%25E8%25BD%25AC%25E5%2585%25A8%25E7%2590%2583%25E5%25AF%25B9-google-%25E5%25A8%2581%25E8%2583%2581%25E9%2580%2580%25E5%2587%25BA%25E4%25B8%25AD%25E5%259B%25BD%25E7%259A%2584%25E8%25AF%2584%25E8%25AE%25BA%2F&from=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[转]全球对 Google 威胁退出中国的评论</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>前一阵给TTT弄了个博客：<a href="http://ttt.jennal.cn/" target="_blank">http://ttt.jennal.cn/</a></p>
<p>TTT周五有个要求，她要博客的首页可以看到评论，不要点进去才能看到，那样太麻烦。</p>
<p>在网上找了很多资料，没有找到单独对这个进行介绍的。所以只好找了其他很多资料，加上不断的尝试，昨晚做到快4点，为了防止这次伟大的事件在我的记忆中被删除，还是写下来纪录一下。</p>
<p>要在首页显示评论，我们需要修改四个文件（可能你的文件命名会有些不同，没有关系）。<br />
这些文件都位于<span style="color: #333399;">wp-content/themes/我的主题</span>目录下</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">index.php : 首页模板
homepage_comments.php : 评论模板
functions.php : 放回调函数，当然你也可以写在homepage_comments.php里面
comments.css : 放评论的css，当然你也可以写在homepage_comments.php里面</pre></div></div>

<p>index.php很简单，在你要放评论的地方加上如下代码，当然要放在日志的循环里面：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$withcomments</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span> comments_template<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/homepage_comments.php'</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>  $withcomments 是一定要设置的，首页默认为0<br />
  至于comments_template这个函数，它会帮你comments先取出来，供你的模板使用。如果有看文档的话，应该知道有一个wp_list_comments函数，这个函数的参数没有接受postId，它是不做数据库查询工作的，具体它是怎么工作的，我也没有深究，只是用到它的回调功能来自定义我们的comments列表，这个在下面会提到。</p>
<p>下面我们来看一下homepage_comments.php怎么写</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;ul class=&quot;homepage_comments&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> 
	wp_list_comments<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'walker'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'max_depth'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'style'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'callback'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'homepage_comments'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'end-callback'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'all'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'page'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'per_page'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'3'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'avatar_size'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">32</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'reverse_top_level'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'reverse_children'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/ul&gt;</pre></td></tr></table></div>

<p>本来以为直接在comments模板里面写结构和样式就可以了。但是发现不行，除非直接去取$wp_query->comments，但是这样不好，最好还是调用它的API，不然以后版本升级可能要出问题。<br />
这里我把wp_list_comments的全部参数都列出来了，其实没有必要，只要设置你想要的参数就可以了。<br />
这里要补充一下需求，我不希望把所有的评论都列出来，我只要列出最新的3条，而且要倒序，就是最新评论的在最上面。所以我把per_page设置成3，reverse_top_level设置成true。但是这样有个问题，显示的时候是显示最后一页，可能你有4条评论，那它只会显示第4条。在不改变和添加新API的情况下，我没想出解决的办法。如果在看这篇文章的你知道怎么解决，请告诉我。顺便说一下，type如果设置成别的可能会出问题。我之前就学别的模板，把它设置成comments，结果每个post的comment全变成一样了。然后设会all就好了，这个问题也不去深究，有兴趣的自己看源码/wp-includes/comment-template.php。<br />
重点来了，重点是&#8217;callback&#8217; => &#8216;homepage_comments&#8217;这个参数。顾名思义，这是设置回调函数，那homepage_comments就是函数名。为了代码的整洁和统一，我把这个函数放在functions.php里了。那在循环遍历comments的时候，就会调用这个函数。</p>
<p>下面来看functions.php这个文件</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> homepage_comments<span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #339933;">,</span> <span style="color: #000088;">$args</span><span style="color: #339933;">,</span> <span style="color: #000088;">$depth</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'comment'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$comment</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$commentcount</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$commentcount</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$commentcount</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&lt;li&gt;&lt;div class=&quot;comment_header&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'get_avatar'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> get_option<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'show_avatars'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #990000;">sprintf</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;span class=&quot;comment_avatar&quot;&gt;%s&lt;/span&gt;'</span><span style="color: #339933;">,</span> get_avatar<span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">20</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>get_comment_author_url<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;a id=&quot;commentauthor-<span style="color: #000000; font-weight: bold;">&lt;?php</span> comment_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; class=&quot;url <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">comment_author_email</span> <span style="color: #339933;">==</span> get_the_author_email<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'admin-url'</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'guest-url'</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> comment_author_url<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; rel=&quot;external nofollow&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">else</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;span id=&quot;commentauthor-<span style="color: #000000; font-weight: bold;">&lt;?php</span> comment_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> comment_author<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>get_comment_author_url<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/a&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">else</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/span&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;span class='comment_date'&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_comment_time<span style="color: #009900;">&#40;</span>__<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Y-m-d'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'monochrome'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/span&gt;
	&lt;/div&gt;
	&lt;div class=&quot;comment_content&quot; id=&quot;comment-content-<span style="color: #000000; font-weight: bold;">&lt;?php</span> comment_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
  <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">comment_approved</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'0'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
   &lt;span class=&quot;comment-note&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> _e<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Your comment is awaiting moderation.'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'monochrome'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/span&gt;
  <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
  <span style="color: #000000; font-weight: bold;">&lt;?php</span> comment_text<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
	&lt;/div&gt;
&lt;/li&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>这个太长了，就不一一详细介绍了，重点讲一下$GLOBALS['comment'] = $comment;，这个是为下面那些API作准备的，类似comment_text()等。这个主要是结构，HTML和PHP混合在一起，所以代码比较乱。但是wp的API函数都能顾名思义出来，需要改结构的请自行调整。</p>
<p>最后我们看一下样式文件comments.css</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.homepage_comment_title</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#aaa</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">11px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.homepage_comments</span> <span style="color: #6666ff;">.comment_header</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">49px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.homepage_comments</span> <span style="color: #6666ff;">.comment_date</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.homepage_comments</span> <span style="color: #6666ff;">.comment_content</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.homepage_comments</span> <span style="color: #6666ff;">.comment_content</span> p <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>OK，一切搞定，如果出问题请自行解决，哈哈哈，本人概不负责。<br />
可惜现在没有示例网站可以看，因为TTT看了首页显示出评论的页面以后说“但我现在想让它变回去”。唉。。辛苦了半天。。算了，至少提高了职业技能，哈哈哈</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F&from=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Wordpress的API-Key</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F13%2F%25E6%259B%25B4%25E6%2596%25B0%25E4%25BA%2586wordpress%2F&from=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">更新了WordPress</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F13%2F%25E5%25BC%2580%25E6%2594%25BE%25E4%25BA%2586%25E8%25AF%2584%25E8%25AE%25BA%2F&from=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">开放了评论</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F17%2F%25E8%25BD%25AC%25E5%2585%25A8%25E7%2590%2583%25E5%25AF%25B9-google-%25E5%25A8%2581%25E8%2583%2581%25E9%2580%2580%25E5%2587%25BA%25E4%25B8%25AD%25E5%259B%25BD%25E7%259A%2584%25E8%25AF%2584%25E8%25AE%25BA%2F&from=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[转]全球对 Google 威胁退出中国的评论</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://jennal.cn/2010/01/31/wordpress%e5%9c%a8%e9%a6%96%e9%a1%b5%e6%96%87%e7%ab%a0%e6%98%be%e7%a4%ba%e8%af%84%e8%ae%ba%e7%9a%84%e6%96%b9%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Wordpress的API-Key</title>
		<link>http://jennal.cn/2009/07/18/wordpress%e7%9a%84api-key/</link>
		<comments>http://jennal.cn/2009/07/18/wordpress%e7%9a%84api-key/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 02:31:07 +0000</pubDate>
		<dc:creator>Jennal</dc:creator>
				<category><![CDATA[没用的话]]></category>
		<category><![CDATA[api-key]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[代理]]></category>

		<guid isPermaLink="false">http://jennal.cn/2009/07/18/wordpress%e7%9a%84api-key/</guid>
		<description><![CDATA[貌似wordpress.com也被天朝给封了，为了开放评论，不得不开启Akismet（一个自动评判垃圾评论的插件，非常牛逼，还可以自动学习），可是Akismet需要wordpress官方的API-Key，只能找代理去注册了。我嫌麻烦，只用网页代理，可是很多网页代理不支持表单，所以没法注册。还好我运气好，找到了两个。
这里只是记录一下，不是帮他们宣传哦。
这个支持表单，还不错的代理，就是广告有点那啥，我是用它注册的
http://proxy.daili.name/
可是wordpress要登录还得用https，上面这个代理没法胜任，只好继续找，找到一个国外的，还不错，用它登录上了，估计注册也没问题
http://www.online-browser.com/
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="4"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Wordpress在首页文章显示评论的方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F&from=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://jennal.cn/wp-content/themes/compositio/images/avatar-replace.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 15px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Wordpress在首页文章显示评论的方法</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="更新了WordPress" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F13%2F%25E6%259B%25B4%25E6%2596%25B0%25E4%25BA%2586wordpress%2F&from=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://jennal.cn/wp-content/themes/compositio/images/avatar-replace.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 15px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">更新了WordPress</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="漫画下载器 v1.6.2" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2010%2F09%2F05%2F%25E6%25BC%25AB%25E7%2594%25BB%25E4%25B8%258B%25E8%25BD%25BD%25E5%2599%25A8-v1-6-2%2F&from=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/02/24/2910921.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 15px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">漫画下载器 v1.6.2</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="漫画下载器 v1.6" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2010%2F08%2F03%2F%25E6%25BC%25AB%25E7%2594%25BB%25E4%25B8%258B%25E8%25BD%25BD%25E5%2599%25A8-v1-6%2F&from=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/02/24/2910930.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 15px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">漫画下载器 v1.6</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="4" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>貌似wordpress.com也被天朝给封了，为了开放评论，不得不开启Akismet（一个自动评判垃圾评论的插件，非常牛逼，还可以自动学习），可是Akismet需要wordpress官方的API-Key，只能找代理去注册了。我嫌麻烦，只用网页代理，可是很多网页代理不支持表单，所以没法注册。还好我运气好，找到了两个。<br />
这里只是记录一下，不是帮他们宣传哦。</p>
<p>这个支持表单，还不错的代理，就是广告有点那啥，我是用它注册的</p>
<p>http://proxy.daili.name/</p>
<p>可是wordpress要登录还得用https，上面这个代理没法胜任，只好继续找，找到一个国外的，还不错，用它登录上了，估计注册也没问题</p>
<p>http://www.online-browser.com/</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="4"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Wordpress在首页文章显示评论的方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F31%2Fwordpress%25E5%259C%25A8%25E9%25A6%2596%25E9%25A1%25B5%25E6%2596%2587%25E7%25AB%25A0%25E6%2598%25BE%25E7%25A4%25BA%25E8%25AF%2584%25E8%25AE%25BA%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595%2F&from=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://jennal.cn/wp-content/themes/compositio/images/avatar-replace.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 15px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Wordpress在首页文章显示评论的方法</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="更新了WordPress" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F13%2F%25E6%259B%25B4%25E6%2596%25B0%25E4%25BA%2586wordpress%2F&from=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://jennal.cn/wp-content/themes/compositio/images/avatar-replace.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 15px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">更新了WordPress</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="[转]一位Google员工及韩寒对Google退出中国的看法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2010%2F01%2F16%2F%25E8%25BD%25AC%25E4%25B8%2580%25E4%25BD%258Dgoogle%25E5%2591%2598%25E5%25B7%25A5%25E5%258F%258A%25E9%259F%25A9%25E5%25AF%2592%25E5%25AF%25B9google%25E9%2580%2580%25E5%2587%25BA%25E4%25B8%25AD%25E5%259B%25BD%25E7%259A%2584%25E7%259C%258B%25E6%25B3%2595%2F&from=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/02/24/2911657.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 15px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">[转]一位Google员工及韩寒对Google退出中国的看法</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="漫画下载器 v1.5" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fjennal.cn%2F2010%2F05%2F17%2F%25E6%25BC%25AB%25E7%2594%25BB%25E4%25B8%258B%25E8%25BD%25BD%25E5%2599%25A8-v1-5%2F&from=http%3A%2F%2Fjennal.cn%2F2009%2F07%2F18%2Fwordpress%25E7%259A%2584api-key%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/02/24/2911518.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 15px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">漫画下载器 v1.5</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="4" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://jennal.cn/2009/07/18/wordpress%e7%9a%84api-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

