描述
仅影响禁用JavaScript的用户。
参数
- $no_reply_text
-
(string|false)(可选) 不回复评论时显示的文本。
默认值: false
- $reply_text
-
(string|false)(可选) 回复评论时显示的文本。接受 "%s" 表示被回复的评论的作者。
默认值: false
- $link_to_parent
-
(bool)(可选) 布尔值来控制使作者的名字成为他们评论的链接。
默认值: true
说明
- 此函数影响禁用Javascript的用户或未加载comment-reply.js的页面。
- 此函数通常直接在
<div id="respond">
下方和评论表单之前使用。
源码
更新日志
版本 | 描述 |
---|---|
2.7.0 | 开始引入 |
使用示例
基本示例
<h3><?php comment_form_title(); ?></h3> <h3><?php comment_form_title( __( 'Leave a Reply', 'textdomain' ), __( 'Leave a Reply to %s', 'textdomain' ) ); ?></h3>