delete_comment_meta

Definition:
function delete_comment_meta($comment_id, $meta_key, $meta_value = '') {}

Remove metadata matching criteria from a comment.
You can match based on the key, or key and value. Removing based on key and value, will keep from removing duplicate metadata with the same key. It also allows removing all metadata matching key, if needed.

Parameters

  • int $comment_id: comment ID
  • string $meta_key: Metadata name.
  • mixed $meta_value: Optional. Metadata value.

Return values

returns:False for failure. True for success.

Source code

function delete_comment_meta($comment_id, $meta_key, $meta_value = '') {

	return delete_metadata('comment', $comment_id, $meta_key, $meta_value);

}

794

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

Leave a comment