让评论计数适用于新的 WordPress 3.0 主题循环设置

发布于 2024-09-07 13:30:14 字数 195 浏览 3 评论 0原文

有人能让这个工作吗?在新主题中,使用 wp_list_comments( array( 'callback' => 'theme_comment' ) ); 填充评论

我不知道这是在哪里循环,所以我不知道从哪里开始计算新变量。我可以改变functions.php中注释的布局,但它只是一个函数,显然wordpress以某种方式仅使用它一次来填充多个注释。

Anyone get this to work at all? In the new theme, comments are populated using wp_list_comments( array( 'callback' => 'theme_comment' ) );

and I have no idea where this is looping, so I don't know where to start counting a new variable. I can alter the layout of the comments in functions.php, but it's just a function and apparently wordpress is somehow using it only once to populate multiple comments.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙沙粒小 2024-09-14 13:30:14

如果您只想要评论数,为什么不使用 get_comments_number() 呢?

更新:

function my_comment($comment, $args, $depth)
{
    static $count = 1;

    // do your comment output - $count will increase on each iteration

    // you could copy and paste twentyten's comment callback code here

    $count++;
}

wp_list_comments('callback=my_comment');

If you just want the comment count, why not get_comments_number()?

UPDATE:

function my_comment($comment, $args, $depth)
{
    static $count = 1;

    // do your comment output - $count will increase on each iteration

    // you could copy and paste twentyten's comment callback code here

    $count++;
}

wp_list_comments('callback=my_comment');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文