Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は衣装テーマを使用した WordPress ブログを持っています。ブログ投稿の下の各コメントの最後にある返信テキストを変更して、コメントの投稿者の名前を含めたいと考えています。
たとえば、コメント ユーザーの名前が「max」の場合、返信ボタンは単に返信するのではなく「max に返信」と表示されます。
私はそれを考え出した
<?php $author = get_comment_author( $comment_ID ); comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply to '.$author.'<span>↑</span>', 'twentyeleven' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>