让评论计数适用于新的 WordPress 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想要评论数,为什么不使用
get_comments_number()
呢?更新:
If you just want the comment count, why not
get_comments_number()
?UPDATE: