简体   繁体   English

回复时如何在wordpress中显示孩子评论

[英]How to show children comments in wordpress when reply

Im working on a project in WP for the comments list i used a callback the codes are here: 我在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
        }
?>

now when I click on the reply button the list of the children comments aren't show . 现在当我点击回复按钮时,不会显示孩子评论列表。

This is the comments.php codes: 这是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; ?>

When I Use Inspect Elements It shows the code but not showing in the screen. 当我使用Inspect Elements它显示代码但没有在屏幕上显示。

also if possible inform a reference for full customizing CSS comment list. 如果可能的话,也可以通知参考完整自定义CSS评论列表。

Thanks alot for your attention. 非常感谢您的关注。

Make sure you have check 'Enable threaded (nested) comments levels deep' in admin >> setting >> discussion in 'Other comment settings'. 确保在“其他评论设置”中的管理>>设置>>讨论中选中“启用线程(嵌套)评论级别深度”。

Replace code from comments.php by following code, it will show child comment as well: 通过以下代码替换comments.php中的代码,它也将显示子注释:

you have to set css after apply this code. 你必须在应用这段代码后设置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 ?>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在Wordpress中添加对评论的回复 - How can I add reply to comments in Wordpress Wordpress:在自定义“wp_list_comments()”中显示“comment_form()”而不是“comment_reply_link()” - Wordpress: Show up 'comment_form()' instead 'comment_reply_link()' in custom 'wp_list_comments()' 自定义html Wordpress评论与头像和回复 - Custom html Wordpress Comments with avatar and reply “回复”链接未在 WordPress 自定义评论模板中附加评论作为回复 - 'Reply' link is not attaching comment as a reply in WordPress custom comments template 如何与父评论一起显示对评论的回复? - How to display reply to comments together with the parent comments? 仅当用户发表了自己的评论时才显示 Wordpress 评论 - Only show Wordpress comments when the user has posted their own comment 注释关闭时,WordPress不会显示摘录 - Wordpress doesn't show excerpt when comments are off wordpress-仅显示已批准的评论 - wordpress - show comments only comments who are approved 仅在选择父级时显示儿童类别(WordPress /论文主题) - Show Children Categories Only When Parent is Selected (Wordpress/Thesis Theme) 使用echo $ children时如何删除特定的子页面; 在Wordpress中 - How to remove specific children pages when using echo $children; in Wordpress
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM