get_comment_meta()函数主要是用来把新增加的评论的字段的值在后台展示出来。

语法

<?php get_comment_meta( $comment_id, $key, $single ); ?>

参数

  1. $comment_id – 评论的id
  2. $key – 字段名。
  3. $single – 布尔型,true或false,设置为true返回一个字符串,设置为false,返回一个数组。