WordPress模板标签comment_reply_link用于输出评论回复链接,通常用在自定义评论模板中。 comment_reply_link( array $args = array(), integer $comment = null, integer $post = null ) 函数参数$args数组,默认值如下: $defaults = array( 'add_below' => 'comment', 'respond_id' => 'respond', 'reply_text' => __( 'Reply' ), /* translators: Comment reply button text. 1: Comment author name */ 'reply_to_text' => __( 'Reply to %s' ), 'login_text' => __( 'Log in to Reply' ), 'max_depth' => 0, 'depth' => 0, 'before' => '', 'after' => '' ); $args参数可用的值如下: …