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 回答