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'] ) ) ); ?>