我有一个客户网站,它为特定类别的帖子请求了自定义评论格式。
在我的循环模板中,我有这个:
<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 法典中的说明进行操作。有什么我忽略的吗?
谢谢你的帮助!
泰