0

我有一个客户网站,它为特定类别的帖子请求了自定义评论格式。

在我的循环模板中,我有这个:

<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 ) ) ?>"> &ndash; 
        <?php get_comment_date() ?> at <?php get_comment_time() ?></a><?php edit_comment_link(__('(Edit)'),'  ','') ?>
        </div>
    </div>
<?php }?>

它没有返回任何评论,对于我的生活,我无法弄清楚为什么。我按照 WP 法典中的说明进行操作。有什么我忽略的吗?

谢谢你的帮助!

4

1 回答 1

0

显然有某种查询调用作为comments_template()调用的一部分发生,就像循环调用一样。

当我将自定义函数放在评论模板中时,它可以完美运行。

我尝试将评论模板的内容放入我的自定义循环单模板中,但没有成功。

The solution wound up being placing an if{} statement in the comments template, and then setting up two different layouts based upon the results.

Now it all works like it should.

于 2012-07-04T16:37:22.163 回答