描述
另见
- Walker_Comment::comment()
参数
- $comment_ID
-
(int|WP_Comment)(必填) WP_Comment或要为其打印文本的评论的ID。默认当前评论。
- $args
-
(array)(可选) 参数数组。
默认值: array()
源码
更新日志
版本 | 描述 |
---|---|
4.4.0 | 增加了$comment_ID 也能接受WP_Comment对象的能力。 |
0.71 | 开始引入 |
使用示例
基本示例
在列表(
<ul>
)标签中显示带有评论作者的评论文本。<ul> <li> <?php printf( __( 'Comment by %s:', 'textdomain' ), get_comment_author() ); ?><br /> <?php comment_text(); ?> </li> </ul>