add_comment_meta

Definition:
function add_comment_meta($comment_id, $meta_key, $meta_value, $unique = false) {}

Add meta data field to a comment.

Parameters

  • int $comment_id: Comment ID.
  • string $meta_key: Metadata name.
  • mixed $meta_value: Metadata value.
  • bool $unique: Optional, default is false. Whether the same key should not be added.

Return values

returns:False for failure. True for success.

Source code

function add_comment_meta($comment_id, $meta_key, $meta_value, $unique = false) {

	return add_metadata('comment', $comment_id, $meta_key, $meta_value, $unique);

}

217

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: