1

私は衣装テーマを使用した WordPress ブログを持っています。ブログ投稿の下の各コメントの最後にある返信テキストを変更して、コメントの投稿者の名前を含めたいと考えています。

たとえば、コメント ユーザーの名前が「max」の場合、返信ボタンは単に返信するのではなく「max に返信」と表示されます。

4

1 に答える 1

1

私はそれを考え出した

<?php
$author = get_comment_author( $comment_ID );
comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply to '.$author.'<span>&uarr;</span>', 'twentyeleven' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); 
?>
于 2013-03-05T21:20:57.353 に答える