-1

コメント.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>

誰か助けて?

4

2 に答える 2

0

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']))) ?>
于 2013-01-09T16:06:13.250 に答える
0

私はphpをあまり知りませんが、問題はあなたが開くのを忘れて"、あなたがphpで言っreply_textreplay_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>
于 2013-01-09T14:42:06.707 に答える