我有一个使用服装主题的WordPress博客,我想要做的是更改博客文章下方每条评论末尾的回复文字,以便它包含评论海报的名称。
例如,如果评论用户的名称为“max”,则回复按钮会显示“回复最大”而不是回复。
答案 0 :(得分:1)
我想通了
<?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'] ) ) );
?>