WordPress评论回复链接标签:comment_reply_link

WordPress模板标签comment_reply_link用于输出评论回复链接,通常用在自定义评论模板中。

1
comment_reply_link( array $args = array(), integer $comment = null, integer $post = null )

函数参数

$args

数组,默认值如下:

1
2
3
4
5
6
7
8
9
10
11
12
$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 {5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}s' ),
    'login_text'    => __( 'Log in to Reply' ),
    'max_depth'     => 0,
    'depth'         => 0,
    'before'        => '',
    'after'         => ''
);

$args参数可用的值如下:

add_below

字符串值,默认值:comment

JavaScript addComment.moveForm()方法的参数,例如:{$add_below}-{$id},则评论容器的ID为类似:comment-23

respond_id

字符串值,默认值:respond

JavaScript addComment.moveForm()方法的参数

reply_text

字符串值,默认值:Reply

回复链接的锚文本

login_text

字符串值,默认值:Log in to Reply

只有在“需要登录才能发表评论”时显示

depth

整数型,默认值:0

新评论的的层级数

before

字符串值,默认为空

在回复评论链接前添加的字符

after

字符串值,默认为空

在回复评论链接后面添加的字符

$comment

整数型,默认值:null

要显示的评论ID

$post

整数型,默认值:null

要显示的评论所在的文章ID

函数使用示例

1
<?php comment_reply_link(); ?>

扩展阅读

comment_reply_link()函数位于:wp-includes/comment-template.php

相关函数:

  • cancel_comment_reply_link()
  • comment_author()
  • comment_author_email()
  • comment_author_email_link()
  • comment_author_IP()
  • comment_author_link()
  • comment_author_rss()
  • comment_author_url()
  • comment_author_url_link()
  • comment_class()
  • comment_date()
  • comment_excerpt()
  • comment_form_title()
  • comment_form()
  • comment_ID()
  • comment_id_fields()
  • comment_text()
  • comment_text_rss()
  • comment_time()
  • comment_type()
  • comments_link()
  • comments_number()
  • comments_open()
  • comments_popup_link()
  • comments_popup_script()
  • comments_rss_link()
  • get_avatar()
  • next_comments_link()
  • paginate_comments_links()
  • permalink_comments_rss()
  • previous_comments_link()
  • wp_list_comments()
原文链接:https://xiaohost.com/2434.html,转载请注明出处。
0