php - 回复时如何在wordpress中显示 child 评论

标签 php html css wordpress comments

我正在 WP 中做一个元素 对于评论列表,我使用了回调,代码在这里:

    <?php
function moortak_comment($comment, $args, $depth) {
   $GLOBALS['comment'] = $comment; ?>
   <li class="media" id="li-comment-<?php comment_ID() ?>">
        <div <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>">
            <a class="media-left" href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>" title="<?php printf(__('%1$s at %2$s'), get_comment_date(),  get_comment_time()) ?>">
                <?php echo get_avatar($comment,$size='64' ); ?>
            </a>
            <?php if ($comment->comment_approved == '0') : ?>
                <div class="alert alert-info"><?php _e('Your comment is awaiting moderation.') ?></div>
                <br />
            <?php endif; ?>
            <div class="media-body">
                <h4 class="media-heading"><?php printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link()) ?></h4>
                <?php comment_text() ?>
            </div>
            <div class="metadata" style=" margin: 10px auto;">
                <?php comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
                <?php edit_comment_link(__('(Edit)'),'  ','') ?>
            </div>
            <div class="clearfix"></div>
        </div>
<?php
        }
?>

现在,当我点击回复按钮时, child 评论列表不会显示。

这是 comments.php 代码:

    <?php
    if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
        die ('Please do not load this page directly. Thanks!');

    if ( post_password_required() ) { ?>
        This post is password protected. Enter the password to view comments.
    <?php
        return;
    }
?>

<?php if ( have_comments() ) : ?>
    <div class="responses">
    <h2 id="response-title"><?php comments_number('No Responses', 'One Response', '% Responses' );?></h2>
    <ul class="media-list" id="comments-list">
        <?php wp_list_comments("callback=moortak_comment"); ?>
    </ul>
    <div class="navigation">
        <div class="next-posts"><?php previous_comments_link() ?></div>
        <div class="prev-posts"><?php next_comments_link() ?></div>
    </div>
 <?php else : // this is displayed if there are no comments so far ?>

    <?php if ( comments_open() ) : ?>
        <!-- If comments are open, but there are no comments. -->

     <?php else : // comments are closed ?>
        <span class="alert alert-danger">Comments are closed.</span>

    <?php endif; ?>

<?php endif; ?>

<?php if ( comments_open() ) : ?>

<div id="respond" class="col-md-12" style="margin: 15px auto">
    <h2><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h2>
    <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
        <p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p>
    <?php else : ?>

    <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
        <?php if ( is_user_logged_in() ) : ?>
            <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out &raquo;</a></p>

        <?php else : ?>
        <?php
        $req      = get_option( 'require_name_email' );
        $aria_req = ( $req ? " aria-required='true'" : '' );
        $html5    = current_theme_supports( 'html5', 'comment-form' ) ? 1 : 0;
        ?>

                    <?php echo'<div class="form-group comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
                    '<input class="form-control" id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></div>
                    ';?>

                    <?php echo'<div class="form-group comment-form-email"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
                    '<input class="form-control" id="email" name="email" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></div>'
                    ;?>
                    <?php echo'<div class="form-group comment-form-url"><label for="url">' . __( 'Website' ) . '</label> ' .
                    '<input class="form-control" id="url" name="url" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></div>
                    ';?>
        <?php endif; ?>

        <div class="alert alert-warning">You can use these tags: <code><?php echo allowed_tags(); ?></code></div>

        <?php echo'<div class="form-group comment-form-comment">
            <label for="comment">' . _x( 'Comment', 'noun' ) . '</label>
            <textarea class="form-control" id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>
        </div>'; ?>

            <?php echo '<button class="btn btn-success" type="submit">' . __( 'Submit' ) . '</button>';?>
            <?php comment_id_fields(); ?>
            <?php cancel_comment_reply_link('<span class="btn btn-danger">Cancel Reply </span>'); ?>
            <?php do_action('comment_form', $post->ID); ?>

    </form>

    <?php endif; // If registration required and not logged in ?>

</div>
<div class="clearfix"></div>
</div>
<?php endif; ?>

当我使用 Inspect Elements 时它显示代码但不显示在屏幕上。

如果可能,还可以提供完整自定义 CSS 注释列表的引用。

非常感谢您的关注。

最佳答案

确保您已在管理 >> 设置 >> “其他评论设置”中的讨论中选中“启用线程(嵌套)深度评论级别”。

将 comments.php 中的代码替换为以下代码,它也会显示子评论:

应用此代码后,您必须设置 css。

if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Please do not load this page directly. Thanks!');

if ( post_password_required() ) { ?>
<p class="nocomments">This post is password protected. Enter the password to view comments.</p>
<?php
return;
}
?>

<?php if ( have_comments() ) : ?>
<h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to &#8220;<?php the_title(); ?>&#8221;</h3>

<div class="navigation">
<div class="alignleft"><?php previous_comments_link() ?></div>
<div class="alignright"><?php next_comments_link() ?></div>
</div>

<ol class="commentlist">
<?php wp_list_comments(); ?>
</ol>

<div class="navigation">
<div class="alignleft"><?php previous_comments_link() ?></div>
<div class="alignright"><?php next_comments_link() ?></div>
</div>
<?php else : // this is displayed if there are no comments so far ?>

<?php if ('open' == $post->comment_status) : ?>
<!-- If comments are open, but there are no comments. -->

<?php else : // comments are closed ?>
<!-- If comments are closed. -->
<p class="nocomments">Comments are closed.</p>

<?php endif; ?>
<?php endif; ?>

<?php if ('open' == $post->comment_status) : ?>

<div id="respond">

<h3><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3>

<div class="cancel-comment-reply">
<small><?php cancel_comment_reply_link(); ?></small>
</div>

<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged in</a> to post a comment.</p>
<?php else : ?>

<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">

<?php if ( $user_ID ) : ?>

<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out &raquo;</a></p>

<?php else : ?>

<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>

<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>

<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>Website</small></label></p>

<?php endif; ?>

<!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->

<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>

<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
<?php comment_id_fields(); ?>
</p>
<?php do_action('comment_form', $post->ID); ?>

</form>

<?php endif; // If registration required and not logged in ?>
</div>

<?php endif; // if you delete this the sky will fall on your head ?>

关于php - 回复时如何在wordpress中显示 child 评论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30476411/

相关文章:

html - 如何使用css使div在圆形按钮内居中

javascript - 尝试在jquery中创建一个简单的视差效果

css - 模板上的 Django 静态导入

html - 防止 CSS 网格中的双边框

php - 通过搜索关键字查找用户并返回结果与共同 friend 的订单

javascript - 如何找到可调整大小的文本区域的自动换行点

php - 压缩 CSS/JS/HTML

javascript - 如何创建没有名称的 "Empty"<Label> 标记

javascript - 使用 Jquery 和 Bootstrap 的单选按钮

php - 尝试访问模型时找不到类 'App\models\Test'