更改WordPress回复按钮以包含海报名称

时间:2013-03-05 17:14:16

标签: wordpress button reply

我有一个使用服装主题的WordPress博客,我想要做的是更改博客文章下方每条评论末尾的回复文字,以便它包含评论海报的名称。

例如,如果评论用户的名称为“max”,则回复按钮会显示“回复最大”而不是回复。

1 个答案:

答案 0 :(得分: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'] ) ) ); 
?>