get_comment_meta() 공개 정적인 메소드

Retrieve comment meta field for a comment.
public static get_comment_meta ( integer $id, string $name, string $type = null ) : mixed
$id integer Comment ID.
$name string Custom field name.
$type string Custom field type (optional).
리턴 mixed Meta value.
예제 #1
0
 function carbon_get_comment_meta($id, $name, $type = null)
 {
     return Helper::get_comment_meta($id, $name, $type);
 }