将最新评论移至 WordPress 顶部
是否可以编写一个插件,使 wordpress 充当论坛 - 最后评论的帖子位于顶部?如何实现这一目标?
Is it possibe to write a plugin to make wordpress act like a forum - the last commented post goes to the top? How this can be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你实际上可以让 Wordpress 看起来&其行为与 Stackoverflow 类似: http://p2theme.com/ (此处演示:http://p2demo.wordpress.com/)。我确信可以配置将最近评论的帖子/线程放在顶部。
You can actually make Wordpress look & behave similarly to Stackoverflow with this: http://p2theme.com/ (demo here: http://p2demo.wordpress.com/). I'm sure that it is configurable to put recently commented posts/threads to the top.
首先使用此函数来获取评论
http://codex.wordpress.org/Function_Reference/get_comments
$args 注意 order 和 orderby
然后你将拥有数组,并且在一个字段中你将拥有 comment_post_ID。这是帖子的id,有了这个就可以查询帖子内容了
firt use this function to get comments
http://codex.wordpress.org/Function_Reference/get_comments
in $args pay attention for order and orderby
then you will have array and in one field you will have comment_post_ID. this is id of post, so having this, you can query for post content