回复的评论显示为单独的评论

时间:2019-02-07 11:17:24

标签: wordpress genesis

我无法使用Genesis Theme在WordPress上显示评论。 我已列出评论。通过回复链接可以完美显示评论。但是当我回复评论时。回复的评论未显示在原始评论下方。它显示为单独的注释。

<li <?php comment_class(); ?> id="comment-<?php echo get_comment_ID(); ?>">

     <?php do_action( 'genesis_before_comment' ); ?>

     <div class="comment-header">
        <p class="comment-author">
            <?php echo get_avatar( $comment, 32 ); ?>
            <?php printf( __( '<cite class="fn">%s</cite> <span class="says">%s:</span>', 'genesis' ), get_comment_author_link(), apply_filters( 'comment_author_says_text', __( 'says', 'genesis' ) ) ); ?>
        </p>
        <p>  <a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php printf( __( '%1$s at %2$s', 'genesis' ), get_comment_date(), get_comment_time() ); ?></a></p>
    </div>


    <div class="comment-content">
        <?php echo $comment->comment_content; ?>.</p>
        <?php if ($comment->comment_approved == '0') : ?>
        <p class="alert"><?php echo apply_filters( 'genesis_comment_awaiting_moderation', __( 'Your comment is awaiting moderation.', 'genesis' ) ); ?></p>

        <?php endif; ?>

        <a rel="nofollow" class="comment-reply-link"  href="<?php  echo get_permalink($post->ID). "/?replytocom=" . get_comment_ID(); ?>#respond">Reply</a>
            <ul class="children">

            </ul>
                <?php do_action( 'genesis_after_comment' ); ?>


    </div>

回复的注释应以主题格式显示。

0 个答案:

没有答案