我有一个客户网站,要求为特定类别的帖子提供自定义评论格式。
在我的循环模板中,我有以下内容:
<div id="gallery-commentlist">
<ul class="gallery-commentlist">
<?php wp_list_comments( \'type=comment&callback=gallery_comment\'); ?>
</ul>
</div><!-- #gallery-commentlist -->
在我的职能中。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中的说明进行操作。有什么是我忽略了的吗?
谢谢你的帮助!
泰
最合适的回答,由SO网友:Ty Morton 整理而成
显然,在comments_template()
调用,就像循环调用一样。
当我把我的自定义函数放在注释模板中时,它工作得很好。
我尝试将注释模板的全部内容放入我的自定义循环单模板中,但没有成功。
解决方案是在注释模板中放置一个if{}语句,然后根据结果设置两个不同的布局。
现在一切都正常了。