wordpress commentLuv自定义所选帖子

时间:2011-08-23 22:50:49

标签: wordpress

即时通讯使用wordpress并尝试执行以下操作:

- 每当我在已安装commentLuv的博客上发表评论时,我想要选择我的随机帖子,为此我更新了以下文件: feed-rss.php,feed-rss2.php,feed-rdf.php,feed-atom.php

我所做的只是添加代码来对帖子进行随机排序,当我在浏览器中检查时(http:// myBlog?feed = rss2 ...)一切正常但是当我尝试使用commentLuv时它保持不变相同的订单(最新发布到最旧)。 有没有办法解决这个问题?(抱歉我的英语不好)

非常感谢你的帮助。

1 个答案:

答案 0 :(得分:0)

以下是一些可能对您有帮助的代码 第1步 - 打开Comments.php

找到这一行:

<p><input type=”text” name=”url” id=”url” value=”<?php echo $comment_author_url; ?>” size=”22″ tabindex=”3″ />
<label for=”url”><small>Website</small></label></p>

第2步 - 在Comments.php中插入新行

只需在上一行下添加此行:

<p><input type=”text” name=”atf_twitter_id” id=”atf_twitter_id” value=”<?php echo esc_attr($atf_twitter_id); ?>” size=”22″ tabindex=”4″ /><label for=”atf_twitter_id”>Twitter (@Username without the @)</label><br></p>

Points Rummy