Languages: English • Italiano • 日本語 (Add your language)
Add meta data field (custom field) to a comment.
<?php add_comment_meta( $comment_id, $meta_key, $meta_value, $unique ); ?>
<?php function add_custom_comment_field( $comment_id ) { add_comment_meta( $comment_id, 'my_custom_comment_field', $_POST['my_custom_comment_field'] ); } add_action( 'comment_post', 'add_custom_comment_field' ); ?>
Since: 2.9
add_comment_meta() is located in wp-includes/comment.php
Comment Meta Functions: add_comment_meta(), get_comment_meta(), update_comment_meta(), delete_comment_meta()