在每个帖子的顶部添加评论链接

时间:2012-04-04 作者:noctorum

默认情况下,Wordpress安装中的所有帖子都在帖子底部有一个帖子评论链接。如何在顶部添加一个?

1 个回复
SO网友:Chip Bennett

只需使用comments_link() template tag, 您需要在模板中的任何位置(但在循环中)显示指向帖子注释的链接。

结束

相关推荐

Where to insert get_comments?

我正在尝试设置一个页面并从外部帖子中提取评论。我接受了这个建议how to pull wordpress post comments to a external page 现在我有了这个get\\u comments代码:<?php $comments = get_comments(\'post_id=15\'); foreach($comments as $comment) : echo($comment->comment_author);