回复链接wordpress不起作用


Reply link wordpress doesn't work

我试图在我的comments.php表单上放一个回复链接,它不起作用。它只是刷新我的页面!

我使用的代码如下:

<div class= replay_text">
<font size="-1"><strong><a href="<?php comment_reply_link( array ( 'reply_text' => 'Replay alt="Reply">' ) ); ?>">Reply</a></strong></font></div>

谁来帮帮我?

我不太懂php,但我认为问题是你忘了打开",而你在php上说的是reply_text而不是replay_text。下面是正确的:

<div class= "reply_text">
<font size="-1"><strong><a href="<?php comment_reply_link( array ( 'reply_text' => 'Replay alt="Reply">' ) ); ?>">Reply</a></strong></font></div>

http://core.trac.wordpress.org/browser/tags/3.5/wp-includes/comment-template.php#L1371

检查comment_reply_link应该如何使用。使用它作为锚源不是最好的主意,我看到过更糟糕的,但你不会和它一起做任何事情。

在锚定目标中,在其他html元素之间使用:

<?php comment_reply_link(array_merge( $args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?>