在WordPress的wp_list_comments中自定义子评论

问题描述 投票:0回答:1

我想要的是这样的:点击看图片

但是,最后它想出了这样的结果: 点击查看图片 (我不能放图片,所以我把图片网址放在这里!)

这是我的 comment.php 中的代码,其中显示评论:

`<?php wp_list_comments('type=comment&callback=comment_activity_list');?>`

这是我的 function.php 中函数“comment_activity_list”的代码:

    <?php if (!function_exists("comment_activity_list")){
        function comment_activity_list($comment, $args, $depth){
        $GLOBALS['comment'] = $comment;
?>
            <ol class="clist">
                    <li id="discussion-<?php comment_ID() ?>" class="discussion">
                        <div class="discussion-post clearfix">
                            <div class="gravatar"><?php echo get_avatar( $comment, 45); ?></div>
                            <div class="block">
                                <a class="discussion-username"><?php echo get_comment_author_link() ?></a>
                                <div class="discussion-text">
                                    <?php comment_text()?>
                                    <?php if ($comment->comment_approved == '0') : ?>
                                        <p><em><?php _e('Your comment is awaiting moderation.'); ?></em></p>
                                    <?php endif; ?>
                                </div>
                                <!--.discussion-text-->
                    <div class="discussion-meta">
                         <?php delete_comment_link($comment->comment_ID,'class="btn red"')?>- <?php comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?> - <?php if(!function_exists('how_long_ago')){comment_date('M d, Y'); } else { echo how_long_ago(get_comment_time('U')); } ?>
                    </div>
                    <!--.discussion-meta-->
                            </div>
                            <!-- .discussion-post -->
                        </div>
                        <!-- .discussion-post -->
            </li>
        </ol>
<?php
        }
    }?>

如何自定义儿童评论?有谁可以帮助我吗?

提前谢谢!

php wordpress comments
1个回答
1
投票

您可以通过检查以下内容来检查评论是否为子评论

<?php if( $comment->comment_parent ) : ?>
// This is a CHILD comment
<?php else: ?>
// This is a NORMAL comment
<?php endif; ?>
© www.soinside.com 2019 - 2024. All rights reserved.