我正在使用自定义代码打印评论,但问题是无论我做什么,我都不能打印任何评论下的评论回复链接。
这是密码
<?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 “<?php the_title(); ?>”</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',' ',''); ?>
</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; ?>
但是当我使用wp_list_comments函数时,我可以看到回复链接自动出现,我使用的是WordPress 3.2.1
5条答案
按热度按时间ni65a41a1#
试试这个:
jm2pwxwz2#
阅读comment_reply_link的源代码(http://core.trac.wordpress.org/browser/tags/3.2.1/wp-includes/comment-template.php#L1061)可能会有所帮助,因为有多种情况可能导致链接不出现。一次解决每一个问题,你可能会找到答案。
一个绊倒了我,是,如果评论被关闭,链接将不会出现.所以它可以帮助检查博客上的评论设置,以确保提供回复实际上是允许在这篇文章.
q5iwbnjs3#
感谢下面的codex-entry(
http://codex.wordpress.org/Function_Reference/comment_reply_link
),我设法在下面的链接中找到了comment_reply_link()
的实际使用:http://core.trac.wordpress.org/browser/tags/3.2.1/wp-includes/comment-template.php#L1061
这给我留下了下面的问题-你是否尝试为函数添加第二个或第三个参数?我认为可能有一些可疑的事情发生在幕后,使评论链接不知道实际链接到哪里。
尝试删除以下代码段
而是使用下面的
让我知道如果它为你工作!
b1zrtrql4#
在Admin〉Settings〉Discussion中启用嵌套注解:
mmvthczy5#
对我来说,它是深度和max_depth在comment_reply_link $args中,当你在自定义回调中使用它时,你需要手动传递深度和max_depth