Wordpress评论回复链接未出现

Wordpress评论回复链接未出现,wordpress,comments,Wordpress,Comments,我使用自定义代码打印评论,但问题是无论我做什么,我都无法打印任何评论下的评论回复链接 这是密码 <?php // Do not delete these lines if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Please do not load this page direc

我使用自定义代码打印评论,但问题是无论我做什么,我都无法打印任何评论下的评论回复链接

这是密码

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

    if (!empty($post->post_password)) { // if there's a password
        if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
            ?>

            <p class="nocomments">This post is password protected. Enter the password to view comments.</p>

            <?php
            return;
        }
    }

    /* This variable is for alternating comment background */
    /*$oddcomment = 'class="alt" ';*/
    $oddcomment = 'alt';
?>

<!-- You can start editing here. -->

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

    <ol class="commentlist">

    <?php foreach ($comments as $comment) : ?>

        <!--<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">-->
        <li class="<?php echo $oddcomment; ?> <?php if ($comment->comment_author_email == get_the_author_email()) { echo 'author_comment'; } ?>" id="comment-<?php comment_ID() ?>">

            <?php echo get_avatar( $comment, 32 ); ?>

            <cite><?php comment_author_link() ?></cite> Says:
            <?php if ($comment->comment_approved == '0') : ?>
            <em>Your comment is awaiting moderation.</em>

            <?php endif; ?>
            <br />

            <small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('F jS, Y') ?> at <?php comment_time() ?></a> <?php edit_comment_link('edit','&nbsp;&nbsp;',''); ?>  
            </small>



            <?php comment_text() ?>

            <div class="reply">
     <?php comment_reply_link( array ( 'reply_text' => 'Reply this comment' ) );
?>

</div>

        </li>

    <?php
        /* Changes every other comment to a different class */
        /*$oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';*/
        $oddcomment = ( empty( $oddcomment ) ) ? 'alt' : '';
    ?>

    <?php endforeach; /* end for each comment */ ?>

    </ol>

 <?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; ?>

此帖子受密码保护。输入密码以查看评论

至“”
多亏了以下法典条目(
http://codex.wordpress.org/Function_Reference/comment_reply_link
),我设法在以下链接上找到了
注释\u回复\u链接()的实际用法:
http://core.trac.wordpress.org/browser/tags/3.2.1/wp-includes/comment-template.php#L1061

这给我留下了一个问题-您是否尝试为函数添加第二个或第三个参数?我认为可能有一些可疑的事情在幕后进行,使得评论链接不知道实际链接到哪里

尝试删除以下代码段

comment_reply_link( array ( 'reply_text' => 'Reply this comment' ) );
而是使用下面的一个

comment_reply_link( array('reply_text' => 'Reply this comment'), comment_ID(), the_ID() );
让我知道它是否适合你

试试这个:

comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth'])))

阅读评论的来源\u回复\u链接可能会有所帮助(http://core.trac.wordpress.org/browser/tags/3.2.1/wp-includes/comment-template.php#L1061),因为存在多个可能导致链接不出现的条件。一次完成每一项,你很可能会找到你的答案


让我大吃一惊的是,如果评论被关闭,链接将不会出现。因此,查看博客上的评论设置,以确保此帖子实际上允许提供回复,这会很有帮助。

在管理>设置>讨论中启用嵌套评论:

  • 启用线程化(嵌套)注释级别

链接正在工作,但我不知道何时单击它,它会显示在页面顶部,并且不会在此回复下方显示评论框。请复制并粘贴它指向的链接,好吗?如果您使用自定义回调显示评论,这是正确的使用方法。效果非常好!非常感谢。我怀疑对于没有产出的人来说,你所说的条件就是问题所在。