我有一个客户端网站已经为特定类别的帖子请求了自定义评论格式。
在我的循环模板中,我有这个:
<div id="gallery-commentlist">
<ul class="gallery-commentlist">
<?php wp_list_comments( 'type=comment&callback=gallery_comment'); ?>
</ul>
</div><!-- #gallery-commentlist -->
在我的functions.php文件中,我有这个:
<?php function gallery_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
<div id="comment-<?php comment_ID(); ?>">
<div class="gallery-comment-body">
<p><span class="gallery-comment-author"><?php comment_text() ?>:</span> <?php comment_text() ?></p>
</div>
<div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ) ?>"> –
<?php get_comment_date() ?> at <?php get_comment_time() ?></a><?php edit_comment_link(__('(Edit)'),' ','') ?>
</div>
</div>
<?php }?>
它没有回复任何评论,而对于我的生活,我无法弄清楚为什么。我按照WP codex中的说明进行了说明。有没有我忽略的东西?
感谢您的帮助!
TY
答案 0 :(得分:0)
显然某种查询调用是comments_template()
调用的一部分,就像循环调用一样。
当我将自定义函数放入评论模板时,它可以很好地工作。
我尝试将评论模板的内容放入我的自定义循环单模板中,但它不起作用。
最终解决方案是在评论模板中放置if {}语句,然后根据结果设置两种不同的布局。
现在一切都像它应该的那样。